Skip to content

Instantly share code, notes, and snippets.

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