Skip to content

Instantly share code, notes, and snippets.

@sevperez
Created June 9, 2018 16:05
Show Gist options
  • Save sevperez/316e12d0e4728622cefbcea02db0e099 to your computer and use it in GitHub Desktop.
Save sevperez/316e12d0e4728622cefbcea02db0e099 to your computer and use it in GitHub Desktop.
function setMovie(movie) {
this.movie = movie;
}
var theater = {
loadProjector: setMovie,
playMovie: function(movie, previewLength) {
this.loadProjector(movie);
setTimeout(() => {
console.log("Now playing: " + this.movie);
}, previewLength);
}
};
theater.playMovie("Gremlins", 1000); // "Now playing: Gremlins"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment