Guest User

Untitled

a guest
May 23rd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function t3hClosure() {
  2. var globalVariablesSux = "non global";
  3.  
  4. return function() {
  5. alert(globalVariablesSux);
  6. }
  7. }
  8.  
  9. closure = t3hClosure();
  10.  
  11. alert(globalVariablesSux);
  12. closure();
Add Comment
Please, Sign In to add comment