Javascript: Key interpolation May 30, 2019 With key interpolation we can add new item to object. const animalSounds = { cat: 'meow', dog: 'bark'}; const animal = 'lion'; const sound = 'roar'; {...animalSounds, [animal]: sound};