Classes, Properties & methods
//Properties are like variables attached to classes/objects
//ES6
constructor(){
this.myProperty = 'value';
}
//ES7
myProperty = 'value';
//Methods are like functions attached to classes/objects
//ES6
myMethod(){...}
//ES7
myMethod = () => {...}