Home > JavaScript Questions > What would following code return?
console.log(typeof typeof 1);
string
typeof 1 will return "number" and typeof "number" will return "string".