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

Level 3. Lesson 5. Comparison Operators.

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

Ashutoshry6u3
//try this
let x = 10;
let y = 50;
let z = "10";

let xy= x>=y;
console.log(xy);
console.log(x===z);

Login / Signup to Answer the Question.