JavaScript DICT -Wert löschen

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