Skip to content

Instantly share code, notes, and snippets.

@Y2016
Created November 5, 2016 09:27
Show Gist options
  • Save Y2016/082bd0f59204cdd3f5f018b5996971a0 to your computer and use it in GitHub Desktop.
Save Y2016/082bd0f59204cdd3f5f018b5996971a0 to your computer and use it in GitHub Desktop.
ES6
// class
class Hamburger {
constructor() {
// This is the constructor.
}
listToppings() {
// This is a method.
}
}
// object
let burger = new Hamburger();
burger.listToppings();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment