Skip to content

Instantly share code, notes, and snippets.

@gitnik
Created December 18, 2015 22:57
Show Gist options
  • Save gitnik/059934fd6994636f90ca to your computer and use it in GitHub Desktop.
Save gitnik/059934fd6994636f90ca to your computer and use it in GitHub Desktop.
const startEngine = Symbol();
export default class Car {
engine;
constructor(engine) {
this.engine = engine;
}
start() {
this[startEngine];
// do more stuff here
}
[startEngine]() {
this.engine.start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment