Q. What is the output of Math.ceil(0) in Javascript?
Code:
<script> var mathVal = Math.ceil(0); document.write(mathVal); </script>
β
Correct Answer: (A)
0
<script> var mathVal = Math.ceil(0); document.write(mathVal); </script>
You must be Logged in to update hint/solution