Skip to content

Instantly share code, notes, and snippets.

@kaineer
Created March 14, 2016 09:59
Show Gist options
  • Save kaineer/97f1813345fa0561afc4 to your computer and use it in GitHub Desktop.
Save kaineer/97f1813345fa0561afc4 to your computer and use it in GitHub Desktop.
var nameKey = Symbol("name");
var Cat = function(name) {
this[nameKey] = name;
}
Cat.prototype.getName = function() {
return this[nameKey];
}
module.export = Cat;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment