For example i want to print the property values of first, middle, and last as concatenated strings.
The final output being: "John P. Doe"
var  person = {
    name: {
        first: 'John',
        middle: 'P',
        last: 'Doe'
    },
    age: 35,
    homeTown: 'Nashville, TN'
};
 
     
     
     
     
     
     
    