Skip to content

Instantly share code, notes, and snippets.

@gvidon
Created June 12, 2015 22:32
Show Gist options
  • Save gvidon/ecd30db789f64e86b8dd to your computer and use it in GitHub Desktop.
Save gvidon/ecd30db789f64e86b8dd to your computer and use it in GitHub Desktop.
var
privateMethod = Symbol('privateMethod');
function DoNotExposePrivateMethod() { return this; }
DoNotExposePrivateMethod.prototype[privateMethod] = function() { console.log('Private phrase!'); }
DoNotExposePrivateMethod.prototype.publicMethod = function() { console.log('Public phrase! ' + this[privateMethod]()); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment