Created
June 9, 2018 15:34
-
-
Save sevperez/7764ab31ee7beec7fa60693a3a779135 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 setEntertainment(type, value) { | |
function setMovie(movie) { | |
this.movie = movie; | |
} | |
if (type === "movie") { | |
setMovie(value); | |
} | |
} | |
setEntertainment("movie", "Jurassic Park"); | |
console.log(window.movie); // "Jurassic Park" | |
console.log(this.movie); // "Jurassic Park" | |
console.log(movie); // "Jurassic Park" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment