Q. What will be the correct output of the following JavaScript code?
Code:
<p id="demo"></p>
<script>
functionFunct()
{
document.getElementById("demo").innerHTML=Math.atan2(8,4);
}
</script>
β
Correct Answer: (B)
1.10