const person = { firstName: 'John', lastName: 'Doe' }; // using spread ... let p1 = { ...person }; // using Object.assign() method let p2 = Object.assign({}, person); // using JSON let p3 = JSON.parse(JSON.stringify(person));