Q. What will be the output of the following JavaScript code?
Code:functioncomparison()
{
int number=10;
if(number==="10")
returntrue;
else
returnfalse;
}
β
Correct Answer: (A)
True
functioncomparison()
{
int number=10;
if(number==="10")
returntrue;
else
returnfalse;
}
You must be Logged in to update hint/solution