Skip to content

Instantly share code, notes, and snippets.

@codenamejason
Last active August 29, 2015 14:16
Show Gist options
  • Save codenamejason/becca26567a453f93bb5 to your computer and use it in GitHub Desktop.
Save codenamejason/becca26567a453f93bb5 to your computer and use it in GitHub Desktop.
Function Constructor
this.prototype = { constructor: this };
var myObject = maker(f, l, m, c, s);
var myObject = maker({
first: f,
last: l,
middle: m,
state: s,
city: c
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment