Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save manekinekko/243fd623c58c44cb96745073d5e0f5da to your computer and use it in GitHub Desktop.
Save manekinekko/243fd623c58c44cb96745073d5e0f5da to your computer and use it in GitHub Desktop.
function Jedi() {
let jedi = "";
this.luke = () => {
jedi = "Luke";
return this;
}
this.imYourFather = () => `${jedi}, Je suis ton père`;
}
var jedi = new Jedi();
jedi.luke().imYourFather(); // Luke, Je suis ton père
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment