Guest User

Untitled

a guest
Apr 26th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. someFunc('1', function(data){console.log(data);})
  2.  
  3. this prints 1 in console
  4.  
  5. but if I do:
  6.  
  7. var i = someFunc('1', function(data){return data;})
  8.  
  9. console.log(i);
  10. i is undefined
Add Comment
Please, Sign In to add comment