Created
November 30, 2021 05:21
-
-
Save vv13/7f06e493568c1ce925ebe162e2fbab2d to your computer and use it in GitHub Desktop.
[JS] Shallow Clone
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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