Skip to content

Instantly share code, notes, and snippets.

@sevperez
Created June 9, 2018 15:34
Show Gist options
  • Save sevperez/882dde619ccc380eb68bd74716411736 to your computer and use it in GitHub Desktop.
Save sevperez/882dde619ccc380eb68bd74716411736 to your computer and use it in GitHub Desktop.
function setMovie(movie) {
this.movie = movie;
}
var theater = {
loadProjector: setMovie,
};
theater.loadProjector("The Princess Bride");
console.log(theater.movie); // "The Princess Bride"
console.log(window.movie); // undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment