What will be the value of result in the following code?
var count = 0;
var result = count > 0 ? "Positive" : "Non-positive";
What will be the value of result in the following code?
var count = 0;
var result = count > 0 ? "Positive" : "Non-positive";