Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created July 12, 2012 07:00
Show Gist options
  • Save ynonp/3096375 to your computer and use it in GitHub Desktop.
Save ynonp/3096375 to your computer and use it in GitHub Desktop.
function Foo() {
}
var p = {
name: 'Mike',
job: 'Musician'
};
Foo.prototype = p;
var p1 = new Foo();
var p2 = new Foo();
// Prints out mike
console.log( p1.name );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment