Skip to content

Instantly share code, notes, and snippets.

@manekinekko
Last active September 12, 2018 11:17
Show Gist options
  • Save manekinekko/5f878d46ab7bb538251fc41759d2f00e to your computer and use it in GitHub Desktop.
Save manekinekko/5f878d46ab7bb538251fc41759d2f00e to your computer and use it in GitHub Desktop.
function dire(callback) {
alert(callback());
}
function executerAuChargement() {
return dire(() => "Bonjour, JavaScript !");
}
window.onload = executerAuChargement;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment