Created
June 9, 2018 15:33
-
-
Save sevperez/70bff4b43cddadc4e9a432b667934a79 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 setMovie(movie) { | |
this.movie = movie; | |
} | |
setMovie("Raiders of the Lost Ark"); | |
console.log(window.movie); // "Raiders of the Lost Ark" | |
console.log(this.movie); // "Raiders of the Lost Ark" | |
console.log(movie); // "Raiders of the Lost Ark" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment