What will be the output of the following TypeScript code?
let x: any = "Hello"; x = 10; console.log(typeof x);
"string"
"number"
"any"
"undefined"
This question is part of this quiz :