Skip to content

Instantly share code, notes, and snippets.

@jearle
Created June 2, 2015 19:59
Show Gist options
  • Save jearle/dbd7f3fbc8e3e6671887 to your computer and use it in GitHub Desktop.
Save jearle/dbd7f3fbc8e3e6671887 to your computer and use it in GitHub Desktop.
// functional
function createPerson (name, age, eyeColor, height) {
return {
name: name,
age: age,
eyeColor: eyeColor,
height: height,
incrementAge: function () {
return createPerson(name, ++age, eyeColor, height);
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment