What will be the value of result in the following code?
var status = "active";
var result = status === "active" ? true : false;
What will be the value of result in the following code?
var status = "active";
var result = status === "active" ? true : false;