Get Programming with JavaScript - Listing 3.05
    
        Listing 3.05 - An object with a single property
        JS Bin
        
var book;
book = {
    title : "The Hobbit"
};
        
     
    Further Adventures
    
        Listing 3.05 - An object with a single property - Task 1
        
        
var book;
book = {
    title : "The Hobbit"
};
console.log(book);
        
     
    
        Listing 3.05 - An object with a single property - Tasks 2 and 3
        
            - Create a second book.
- Log book2 to the console.
var book;
var book2;
book = {
    title : "The Hobbit"
};
book2 = {
    title : "Northern Lights"
};
console.log(book);
console.log(book2);