Guest User

Untitled

a guest
Feb 18th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. > function a(b,c) { console.log("%s, %s", b, c); }
  2. > var bi = a.bind({}, 'cool', 'bar');
  3. > bi()
  4. cool, bar
Add Comment
Please, Sign In to add comment