420 B
420 B
title, type, language, tags, cover, dateModified
| title | type | language | tags | cover | dateModified | |
|---|---|---|---|---|---|---|
| Shallow clone object | snippet | javascript |
|
neon-desk-1 | 2020-09-15T16:28:04+03:00 |
Creates a shallow clone of an object.
- Use
Object.assign()and an empty object ({}) to create a shallow clone of the original.
const shallowClone = obj => Object.assign({}, obj);
const a = { x: true, y: 1 };
const b = shallowClone(a); // a !== b