Q. What will be the correct output of the following JavaScript code?
Code:
<p id="demo"></p>
<script>
functionmyFunc()
{
document.getElementById("demo").innerHTML=Math.asinh(1);
}
</script>
β
Correct Answer: (D)
0.88