Q. What will be the value of VALUE?
Code:
<script> const VALUE = 10; VALUE = 20; </script>
β
Correct Answer: (D)
TypeError
<script> const VALUE = 10; VALUE = 20; </script>
You must be Logged in to update hint/solution