const App = {
  start () {
    console.log('running')
  }
}
//Same as: App = { start: function () {···} }

See: Object Literals Enhanced

Comments