Skip to content

Instantly share code, notes, and snippets.

@mikelikesbikes
Created February 2, 2016 19:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikelikesbikes/42e17386be4b5775bcd7 to your computer and use it in GitHub Desktop.
Save mikelikesbikes/42e17386be4b5775bcd7 to your computer and use it in GitHub Desktop.
var babby = {
response: "wahhhh",
hello: function() {
console.log(this.response)
}
}
babby.hello();
babby.hello.call({response: "I'm Stewie Griffin. Hello. </britishaccent>"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment