Real World Objects

Lesson 20
Author : Afrixi
Last Updated : October, 2017


Javascript - Program the Web
This course covers the basics of programming in Javascript. Work your way through the videos/articles and I'll teach you everything you need to know to make your website more responsive!
Table of Content

Code

Copyvar myMovie = {
     title: "The Social Network",
     releaseYear: "2010",
     duration: 2.0,
     actors: [
          {
               name: "Jessie Eisenberg",
               birthday: new Date("October 5, 1983"),
               hometown: "New York, New York"
          },
          {
               name: "Roonie Mara",
               birthday: new Date("April 17, 1985"),
               hometown: "Bedford New York"
          }
     ]
};