Skip to content

Instantly share code, notes, and snippets.

@alexesca
Created June 11, 2020 02:36
Show Gist options
  • Save alexesca/b57aa23ed9537054964f50f15d13af1e to your computer and use it in GitHub Desktop.
Save alexesca/b57aa23ed9537054964f50f15d13af1e to your computer and use it in GitHub Desktop.
// Before ECMAScript 2015
const obj = {
foo: function() {
// ...
},
bar: function() {
// ...
}
}
// After ECMAScript 2015
const obj = {
foo() {
// ...
},
bar() {
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment