JavaScript: Creating a Customer Object with Nested Address Object
Write the code to create an object named customer. The customer object will have three properties: name, id, and a sub-object (nested object) of address. The address object will have four properties: street, city, state, and zip code. Assign these properties values of your choosing.