Skip to content

Instantly share code, notes, and snippets.

@sevperez
Last active June 9, 2018 15:58
Show Gist options
  • Save sevperez/7855ad98bcb6a28891c415f5c9e66bc9 to your computer and use it in GitHub Desktop.
Save sevperez/7855ad98bcb6a28891c415f5c9e66bc9 to your computer and use it in GitHub Desktop.
function Movie(title, director) {
this.title = title;
this.director = director;
}
var independenceDay = new Movie("Independence Day", "Roland Emmerich");
console.log(independenceDay.title); // "Independence Day"
console.log(independenceDay.director); // "Roland Emmerich"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment