Deep Copy

const deepCpy = (obj) =>{
  JSON.parse(JSON.stringify(obj))
}