Implicit return object26/07/2018 — 1 Min Read — In JavaScript, ES6ES5const make = 'Ford'; const model = 'Mustang'; const engine = '5.0'; const car = { make: make, model: model, engine: engine, }; ES6const make = 'Ford'; const model = 'Mustang'; const engine = '5.0'; const car = { make, model, engine, }; PreviousObject Literal console logsNextTotal up the instances of items in an array.