Skip to content

Instantly share code, notes, and snippets.

@kevinwestern
Created August 6, 2012 23:58
Show Gist options
  • Save kevinwestern/3279743 to your computer and use it in GitHub Desktop.
Save kevinwestern/3279743 to your computer and use it in GitHub Desktop.
var Person = function (name, age) {
this.name = name;
this.age = age;
}
new Person('bob', 22); => {name: 'bob', age: 22}
// or this
var bob = {name: 'bob', age: 22};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment