JS

JavaScript Fundamentals 2 - Output of the followin...

13.

What will be the output of the following code?

var x = 5;
var y = 10;

if (x > y) {
  console.log("x is greater than y");
} else {
  console.log("x is less than or equal to y");
}

x is greater than y

x is less than y

x is less than or equal to y

No output will be generated