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');