Q. See the given code of JavaScript and choose the correct output from the following:
Code:
functioncomparing()
{
intx=9;
chary=9;
if(x==y)
returntrue;
else
returnfalse;
}
β
Correct Answer: (D)
true