Skip to content

Instantly share code, notes, and snippets.

@sevperez
Created June 9, 2018 15:34
Show Gist options
  • Save sevperez/7764ab31ee7beec7fa60693a3a779135 to your computer and use it in GitHub Desktop.
Save sevperez/7764ab31ee7beec7fa60693a3a779135 to your computer and use it in GitHub Desktop.
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