Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. function myFunction(param) {
  2. console.log(this + " says hello " + param);
  3. }
  4.  
  5. myFunction.call("Paul", "world")
  6. // Output => Paul says hello world
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement