📄️ Object.assign()
Object.assign() copies its source objects' enumerable own properties and assigns them to the target object.
📄️ Object.entries()
The Object.entries() JavaScript method copies an objects' enumerable own key-value pairs into a new array.
📄️ Object.hasOwn()
Object.hasOwn() returns true if an object has a specified property as its own property. Otherwise, it returns false.
📄️ Object.keys()
The Object.keys() JavaScript method copies an objects' enumerable own keys into a new array.
📄️ Object.values()
The Object.values() JavaScript method copies an objects' enumerable own values into a new array.