Skip to content

Instantly share code, notes, and snippets.

@cowboy
Created November 6, 2012 14:56
Show Gist options
  • Save cowboy/4025192 to your computer and use it in GitHub Desktop.
Save cowboy/4025192 to your computer and use it in GitHub Desktop.
(for a class)
var prop = 11;
var obj = {
prop: 1,
add: function(a, b) {
return this.prop + a + b;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment