Q. Find out the correct output of the following given piece of code from the given options:
Code:functionfun()
{
int y=10;
char z=10;
if(y.tostring()===z)
returntrue;
else
returnfalse;
}
β
Correct Answer: (D)
true