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 4.13
 * Updating your display function to add a blank line
 */
var movie1;
var movie2;
var movie3;
var movie;
var showMovieInfo;
movie1 = {
    title: "Inside Out",
    actors: "Amy Poehler, Bill Hader",
    directors: "Pete Doctor, Ronaldo Del Carmen"
};
movie2 = {
    title: "Spectre",
    actors: "Daniel Craig, Christoph Waltz",
    directors: "Sam Mendes"
};
movie3 = {
    title: "Star Wars: Episode VII - The Force Awakens",
    actors: "Harrison Ford, Mark Hamill, Carrie Fisher",
    directors: "J.J.Abrams"
};
showMovieInfo = function () {
    console.log("Movie information for " + movie.title);
    console.log("------------------------------");
    console.log("Actors: " + movie.actors);
    console.log("Directors: " + movie.directors);
    console.log("------------------------------");
    console.log("");
};
movie = movie1;
showMovieInfo();
movie = movie2;
showMovieInfo();
movie = movie3;
showMovieInfo();
/* Further Adventures
 *
 * 1) Create three objects to represent blog posts.
 *
 * 2) Create a function to display
 *    the posts on the console.
 *
 * 3) Can you find your own way of visually
 *    separating the different blog posts
 *    on the console?
 *
 */
Output

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

Dismiss x
public
Bin info
jrlarsenpro
0viewers