What will be the value of result in the following code?
var number = -10;
var result = number < 0 ? "Negative" : "Non-negative";
What will be the value of result in the following code?
var number = -10;
var result = number < 0 ? "Negative" : "Non-negative";