DEV Community

Discussion on: Share a quick tip you learned about web dev this year

Collapse
 
spiritupbro profile image
spiritupbro

really? that was super simple bro

//lets say you have an array like this
let animal=['panda','cat','mongoose'];

//then if you want to clone it one of the method i copy from mr awais is this one
let animalClone=[...animal]

as simple as that

Thread Thread
 
urielbitton profile image
Uriel Bitton

Sweet. Definitely useful! Thanks

Thread Thread
 
spiritupbro profile image
spiritupbro

i found it here the original post

Thread Thread
 
dinsmoredesign profile image
Derek D

You can do the same with objects. Keep in mind, this doesn't deep clone. So if you intend to change the values in any way, you'll still be mutating the pointer, and by consequence, the original object.