Skip to content

Instantly share code, notes, and snippets.

@mikelikesbikes
Created February 2, 2016 19:16
Show Gist options
  • Select an option

  • Save mikelikesbikes/42e17386be4b5775bcd7 to your computer and use it in GitHub Desktop.

Select an option

Save mikelikesbikes/42e17386be4b5775bcd7 to your computer and use it in GitHub Desktop.

Revisions

  1. mikelikesbikes created this gist Feb 2, 2016.
    10 changes: 10 additions & 0 deletions babby.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    var babby = {
    response: "wahhhh",
    hello: function() {
    console.log(this.response)
    }
    }

    babby.hello();

    babby.hello.call({response: "I'm Stewie Griffin. Hello. </britishaccent>"})