Exploring objects : nested objects

by Cristi Salcescu

JavaScript

let book = {
	title : "The Good Parts",
  author : {
		firstName : "Douglas",
  	lastName : "Crockford"
	}
}