Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

The console does not execute my code

let x = 10;
let y = 50;
let z = "10";

//My code is de following:
let xy = x >= y;
console.log(xy);

let xz = x === z;
console.log(xz);
by

1 Answer

iamabhishek
Please check again now, it should be working.

Login / Signup to Answer the Question.