A
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;
}
{
intx=9;
chary=9;
if(x==y)
returntrue;
else
returnfalse;
}
- Correct Answer - Option(D)
- Views: 26
- Filed under category JavaScript
- Hashtags:
Discusssion
Login to discuss.