What is the output of the following JavaScript code? | Question 6

42. What will be the output of the following JavaScript code?

<script>
	var x = 12.34;
	document.getElementById("test").innerHTML = typeof(x);
</script>
  1. int
  2. float
  3. long
  4. number

Answer: D) number

Explanation:

The output of the following JavaScript code is number.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.