d
Amit DhamuSoftware Engineer
 

Self Executing Function

1 minute read 00000 views
;(function () {
  // your code here...
})()

Alternative Method a la jQuery

;(function (window, undefined) {
  // your code here...
})(window)