alert(function( ){return 'foo'}());
responds with "foo".
alert(function( ){return
'foo'}());
responds with "undefined" .
Why?
responds with "foo".
alert(function( ){return
'foo'}());
responds with "undefined" .
Why?
Comment