Are these two functions below same ? (See the parenthesis at the end)
(function () {
alert('hi');
}());
and
(function () {
alert('hi');
})();
Are these two functions below same ? (See the parenthesis at the end)
(function () {
alert('hi');
}());
and
(function () {
alert('hi');
})();