como usar o shallowClone no javascript es6
January 04, 2020
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