Last active
June 9, 2018 15:58
-
-
Save sevperez/7855ad98bcb6a28891c415f5c9e66bc9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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