What will be the value of result in the following code?
var x = 10;
var result = x > 5 ? "Greater than 5" : "Less than or equal to 5";
What will be the value of result in the following code?
var x = 10;
var result = x > 5 ? "Greater than 5" : "Less than or equal to 5";