What will be the output of the following JavaScript code?

Mark as favorite

// JavaScript Comparison Operators

function compare()

{

int num=2;

char b=2;

if (a==b)

return true;

else

return false;

}

Leave a Reply