const obj = { a: 'dog', b: 'cat', c: 'mouse', d: 'cow', e: 'horse', }; const {a, e, ...updatedObject} = obj; // output console.log(updatedObject)