Q. What is the output of the following JavaScript code?
Code:
<script> let a = 10; let a = 0; </script>
β
Correct Answer: (C)
SyntaxError
<script> let a = 10; let a = 0; </script>
You must be Logged in to update hint/solution