Q. What will be the output of the following JavaScript code?
Code:
<script>
let x = "10";
let y = + x;
document.write(typeof y);
</script>
β
Correct Answer: (D)
number