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

LEVEL3 > LESSION5

I didn't get what it actually wants?
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.