0 votes
in JavaScript by
What's the output?
console.log(typeof typeof 1);
  • A: "number"
  • B: "string"
  • C: "object"
  • D: "undefined"

1 Answer

0 votes
by

Answer: B

typeof 1 returns "number"typeof "number" returns "string"

...