Sagen wir, ich habe ein Objekt:
elmo = {
color: 'rot',
annoying: true,
height: 'unbekannt',
meta: { one: '1', two: '2'}
};
Ich möchte ein neues Objekt mit einem Teil seiner Eigenschaften erstellen.
// Pseudocode
subset = elmo.slice('color', 'height')
//=> { color: 'rot', height: 'unbekannt' }
Wie kann ich das erreichen?