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

Hello on level 3 lesson 5 in Javascript problem in the message you give!

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

output all is false and the interpreter gives me you
have wrong output could you please check it again
I can't see what it wants
beyond my logic

answer is :

Your code's output does not match the expected outcome for this exercise.

CONSOLE
false
false
false
by

1 Answer

sam5epi0l
Remove first console.log from your code.

Here is a working code:

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.