What will be the value of result in the following code?
var x = "Hello";
var result = typeof x === "string" ? "String type" : "Not a string";
What will be the value of result in the following code?
var x = "Hello";
var result = typeof x === "string" ? "String type" : "Not a string";