javaScript удалить значение дикта

const o = { lastName: 'foo' }
delete o['lastName']
Cerbrain