JavaScript Program to Merge Property of Two Objects
In this example, you will learn to write a JavaScript program that will merge the property of two objects.
To understand this example, you should have the knowledge of the following JavaScript programming topics:
JavaScript Objects
JavaScript Object.assign()
Example 1: Merge Property of Two Objects Using Object.assign()
In the above example, two objects are merged into one using the Object.assign() method.
The Object.assign() method returns an object by copying the values of all enumerable properties from one or more source objects.
Post a Comment