There is no way to happiness, Happiness is the way to happiness
Nothing here yet.
Nothing here yet.
//create Object let object = { name : "ravi", age : "36" } // shallow copy let ShallowCopy = object //ShallowCopy changes age 35 ShallowCopy.age=35 // print shallow copy and object reflect both object console.log("ShallowcCopy : ", ShallowCopy) conso...
