Object is a list of data types that is stored as a series of name-value pairs. Each key is known as property in javascript. In this example, We are declaring person as an object
with four properties firstName,lastName,age and eyeColor with value as "Michael", "Voughan", 40 and blue, Here is how we can concatenate firstName and lastname from object: person.firstName + " " + person.lastName See the code snippet: