Skip to content

Instantly share code, notes, and snippets.

@fntneves
Created October 13, 2017 13:24
Show Gist options
  • Save fntneves/b2dfbddc00b6637a5ebe7fbfb90ad2ef to your computer and use it in GitHub Desktop.
Save fntneves/b2dfbddc00b6637a5ebe7fbfb90ad2ef to your computer and use it in GitHub Desktop.
Class example with private methods.
const privateMethod = Symbol('privateMethod');
export default class Clazz {
constructor() {
//
}
doIt() {
//
}
[privateMethod]() {
//
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment