Q. What will be the output of the following JavaScript code?
Code:<script>
let x = 10;
document.write(typeof x, " , ", typeof String(x));
</script>
β
Correct Answer: (A)
number , string
<script>
let x = 10;
document.write(typeof x, " , ", typeof String(x));
</script>
You must be Logged in to update hint/solution