Skip to content

Instantly share code, notes, and snippets.

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