Property Value Shorthand

PHOTO EMBED

Thu Jul 21 2022 18:35:53 GMT+0000 (Coordinated Universal Time)

Saved by @cruz #javascript

function robotFactory(model, mobile){
  return {
    model,
    mobile,
    beep() {
      console.log('Beep Boop');
    }
  }
}

// To check that the property value shorthand technique worked:
const newRobot = robotFactory('P-501', false)
console.log(newRobot.model)
console.log(newRobot.mobile)
content_copyCOPY