Skip to content

Instantly share code, notes, and snippets.

@vv13
Created November 30, 2021 05:21
Embed
What would you like to do?
[JS] Shallow Clone
function shallowClone(obj) {
if (typeof obj !== 'object') return obj;
const newObj = obj instanceof Array ? [] : {};
for (let key of Object.keys(obj)) {
newObj[key] = obj[key];
}
return newObj;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment