Advertisement
thecrypticace

Awesomeness

Nov 4th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function(window){
  2.    
  3.     var tellMeTheTruth = function(){
  4.         window.alert("You Are Awesome! (With A Capital `A`)");
  5.     };
  6.     var whatIsTheBestNumberEver = function(){
  7.         window.alert("42");
  8.     };
  9.  
  10.     // maybe some initialization code or whatever
  11.     // maybe some variables
  12.     var interestingButUnusedRegExp = /([a-fA-F\d]+)/;
  13.  
  14.     window.tellMeTheTruth = tellMeTheTruth;
  15.     window.whatIsTheBestNumberEver = whatIsTheBestNumberEver;
  16. }(window));
  17.  
  18. // It minifies quite well: (function(e){e.tellMeTheTruth=function(){e.alert("You Are Awesome! (With A Capital `A`)")},e.whatIsTheBestNumberEver=function(){e.alert("42")}})(window)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement