Skip to content

Instantly share code, notes, and snippets.

@andrewjmead
Created February 15, 2016 22:30
Show Gist options
  • Select an option

  • Save andrewjmead/9fc0a8b859277ac7d6df to your computer and use it in GitHub Desktop.

Select an option

Save andrewjmead/9fc0a8b859277ac7d6df to your computer and use it in GitHub Desktop.
ES6 Method Declaration
var obj = {
age: 25,
getAge () {
console.log(this.age);
}
}
obj.getAge();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment