This is my object
const person = {
  name: "Vikram",
  age: 21,
  place: {
    country: "India",
    state: "Karnataka",
  },
  marks: [1, 2, 3, 4],
  parents: {
    father: "Ramesh",
    mother: "Suma",
  },
};
function cloneDeep(obj){} 
 
that should create a deep copy of the provided object using recursion and methods like Object.create etc. Please help me to deep copy this object using recursion.
 
     
    