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