Skip to content

Instantly share code, notes, and snippets.

@johnmmoss
Last active July 1, 2016 15:14
Show Gist options
  • Save johnmmoss/8a1462c1066be8abba56f2eafcf2890b to your computer and use it in GitHub Desktop.
Save johnmmoss/8a1462c1066be8abba56f2eafcf2890b to your computer and use it in GitHub Desktop.
Using ECMA 6 Class keyword
'use strict'
class Monkey {
constructor(name, color) {
this.color = color;
this.name = name;
}
}
var bert = new Monkey("albert", "red");
console.log(bert.name) // albert
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment