Object short hand

  1. const x = 4;
  2. const y = 2;
  3. const o = { x, y, z: x * y }; // { x: 4, y: 2, z: 8 }