lazyfish623

Untitled

Jun 15th, 2017
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function Bar(callback) {
  2.     callback({
  3.         "Foo": "Bar"
  4.     })
  5. }
  6.  
  7. var Foo = Bar(response => {
  8.     return response
  9. })
  10.  
  11. console.log(Foo)
Advertisement
Add Comment
Please, Sign In to add comment