Q. What will be the output of the following code snippet?
Code:
<script type="text/javascript"> a = 5 + "9"; document.write(a); </script>
β
Correct Answer: (D)
59
<script type="text/javascript"> a = 5 + "9"; document.write(a); </script>
You must be Logged in to update hint/solution