What will be the output of the following JavaScript code?
let x = 10; document.write(typeof x, " , ", typeof String(x));
number, string
number, number
object, string
object, object
Correct Answer : A
var declares a block-scoped variable
const declares a block-scoped variable
let declares a block-scoped variable