Skip to content

Instantly share code, notes, and snippets.

@deconstructionalism
Last active July 12, 2017 01:57
Show Gist options
  • Select an option

  • Save deconstructionalism/e454cd826ffb9efc777c25abcdee11e2 to your computer and use it in GitHub Desktop.

Select an option

Save deconstructionalism/e454cd826ffb9efc777c25abcdee11e2 to your computer and use it in GitHub Desktop.
General_Assembly_excersize_1
var names = ['Fido', 'Rufus', 'Meatyard'];
names.prototype = {
addName: function () { this.push(name) },
sayNames: function () { this.map(name => {
console.log(name)
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment