Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function sayThings(something, somethingElse) {
  2. console.log(something + ' and ' + somethingElse);
  3. }
  4.  
  5. boundSayThings = sayThings.bind(this, 'meow', 'woof');
  6. boundSayThings(); // logs "meow and woof"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement