What will be the value of result in the following code?
var x = 5;
var result = x === 5 ? "Equal to 5" : "Not equal to 5";
What will be the value of result in the following code?
var x = 5;
var result = x === 5 ? "Equal to 5" : "Not equal to 5";