102030 because after a string all the + will be treated as string concatenation operator (not binary +).
function display()
{
document.writeln(“10″+20+30);
}
display();
102030 because after a string all the + will be treated as string concatenation operator (not binary +).
function display()
{
document.writeln(“10″+20+30);
}
display();