What will be the value of result in the following code?
var age = 16;
var result = age >= 18 ? "Allowed" : "Not allowed";
What will be the value of result in the following code?
var age = 16;
var result = age >= 18 ? "Allowed" : "Not allowed";