Skip to content

Instantly share code, notes, and snippets.

@agoiabel
Created April 14, 2018 08:08
Show Gist options
  • Select an option

  • Save agoiabel/3b4f5b8d8555fdf5c4a274403924e78e to your computer and use it in GitHub Desktop.

Select an option

Save agoiabel/3b4f5b8d8555fdf5c4a274403924e78e to your computer and use it in GitHub Desktop.
class Person {
name = 'Abel'; //no need for the constructor
//new way of defining the methods
const printMyName = () => {
console.dir(this.name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment