Q. What will be the output of the following JavaScript code?
Code:function myfun()
{
document.getElementById ("demo").innerHTML = Boolean(15.00 === 15);
}
β
Correct Answer: (C)
false
function myfun()
{
document.getElementById ("demo").innerHTML = Boolean(15.00 === 15);
}
You must be Logged in to update hint/solution