how to create a new object using clone method code example
Example: how to clone an object
const first = {'name': 'alka', 'age': 21}
const another = Object.assign({}, first);
const first = {'name': 'alka', 'age': 21}
const another = Object.assign({}, first);