nickarthur
1/10/2014 - 10:33 PM

Self Executing anonymous function to wrap our code so its not in the global scope

Self Executing anonymous function to wrap our code so its not in the global scope

//add a self executing anonymous function to wrap our code so 
//its not in the global scope
(function () {
//self executing anaonymous function
  "use strict"
})();