Anonymous Function
by Oliver Ni
HTML
Look at JavaScript
JavaScript
alert('With semicolon');
(function (msg){alert(msg)});
('SO');
alert('(Nothing)');
alert('Without semicolon');
(function (msg){alert(msg)})
('SO');
by Oliver Ni
Look at JavaScript
alert('With semicolon');
(function (msg){alert(msg)});
('SO');
alert('(Nothing)');
alert('Without semicolon');
(function (msg){alert(msg)})
('SO');