Guest User

Untitled

a guest
Nov 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. var name = "John Doe";
  2. function showThis(message) {
  3. //console.log("name => ", name);
  4. console.log("this.name => ", this.name);
  5. console.log("message => ", message);
  6. }
  7. var user = {
  8. name: "Jane Doe"
  9. };
  10. showThis("hello!", "fuuuu!");
  11. showThis.call(user, "hello again!", "must be ignored");
Add Comment
Please, Sign In to add comment