Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. function test(){
  2. var response = "not global";
  3. callback(function(){
  4. console.log(response);
  5. });
  6. }
  7.  
  8. function callback(f){
  9. f();
  10. }
  11.  
  12. test();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement