What will be the value of result in the following code?
var isLoggedIn = false;
var result = isLoggedIn ? "Logged in" : "Not logged in";
What will be the value of result in the following code?
var isLoggedIn = false;
var result = isLoggedIn ? "Logged in" : "Not logged in";