What will be the value of result in the following code?
var x = -5;
var result = x >= 0 ? "Positive or zero" : "Negative";
What will be the value of result in the following code?
var x = -5;
var result = x >= 0 ? "Positive or zero" : "Negative";