Skip to content

Instantly share code, notes, and snippets.

@ilearnjavascript
Created March 27, 2019 23:36
Show Gist options
  • Save ilearnjavascript/aa2d0cefe10690d9654ea18843205ded to your computer and use it in GitHub Desktop.
Save ilearnjavascript/aa2d0cefe10690d9654ea18843205ded to your computer and use it in GitHub Desktop.
es6 - classes - 1.js
var john = {
firstname: 'John',
lastname: 'Doe',
greet: function () {
console.log('Hello I am ' + this.firstname + ' ' + this.lastname);
}
}
john.greet();
// outputs: Hello my name is John Doe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment