Skip to content

Instantly share code, notes, and snippets.

@jwarchol
Created February 4, 2011 18:26
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 jwarchol/811508 to your computer and use it in GitHub Desktop.
Save jwarchol/811508 to your computer and use it in GitHub Desktop.
f = {
foo: function() {
console.log("foo");
},
bar: function() {
console.log("bar");
},
foobar: function() {
this.foo();
this.bar();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment