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

Level 3, lesson 5

unable to proceed.
by

1 Answer

kshitijrana14
Try this one:

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.