What will be the value of result in the following code?
var temperature = 25;
var result = temperature > 30 ? "Hot" : "Not hot";
What will be the value of result in the following code?
var temperature = 25;
var result = temperature > 30 ? "Hot" : "Not hot";