Skip to content

Instantly share code, notes, and snippets.

@sysoev-dev
Last active January 27, 2022 08:42
Show Gist options
  • Save sysoev-dev/c90a1dab02968f3ce903551331961d40 to your computer and use it in GitHub Desktop.
Save sysoev-dev/c90a1dab02968f3ce903551331961d40 to your computer and use it in GitHub Desktop.
function clone(object) {
let newObject = {}
for (let prop in object) {
newObject[prop] = (typeof object[prop] !== 'object') ? object[prop] : clone(object[prop])
}
return newObject;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment