Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save manekinekko/0e9b229eda36b4780a48f08f698282ee to your computer and use it in GitHub Desktop.
Save manekinekko/0e9b229eda36b4780a48f08f698282ee to your computer and use it in GitHub Desktop.
const jedi = (function(what) {
const say = `I'm your ${what}!`;
return (() => `Luke, ${say}`)();
})("father");
console.log(jedi); // "Luke, I'm your father!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment