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

What is the answer? I have been stuck on the last step in level three lesson five javascript.

For some reason its saying its not right??
by

1 Answer

iamabhishek
Here is the correct answer:

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.