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

Level 3 Lesson 5 for Comparison Operators in Javascript

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

console.log(x > z);

What am I doing wrong?
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.