Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
/* Get Programming with JavaScript
 * Listing 3.07
 * Objects with multiple properties
 */
var book1;
var book2;
book1 = {
  title : "The Hobbit",
  author : "J. R. R. Tolkien"
};
book2 = {
    title : "Northern Lights",
    author : "Philip Pullman"
};
/* Further Adventures
 *
 * 1) Add a third property to each book.
 *    Don't forget the commas.
 *
 * 2) Add spaces so that the colons line up.
 *
 * 3) Log both objects to the console.
 *
 */
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
jrlarsenpro
0viewers