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

Level 3 lesson 5 . I complete all the given instruction but it shows the output mismatched what can I do ?

how can I see the output
by

1 Answer

sam5epi0l
The output according to the instructions would be:

false
false


Here is the code which I used:

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

var xy = x >= y;
console.log(xy);

console.log(x === z);

Login / Signup to Answer the Question.