Skip to content

Instantly share code, notes, and snippets.

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