JavaScript Object Methods Explained!
1. assign()
It clones and copy the values of source object into target object and return the newly created object by merging them.
// 1. assign()
const fruit = {
name: 'Water Melon',
icon: '๐',
type: 'Fruit'
};
const beverages = {
n...
iamharis.hashnode.dev6 min read