Skip to content

Instantly share code, notes, and snippets.

@ssougnez
Created June 28, 2018 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssougnez/5dab3d0805bc8eb847bbf8108afae6ce to your computer and use it in GitHub Desktop.
Save ssougnez/5dab3d0805bc8eb847bbf8108afae6ce to your computer and use it in GitHub Desktop.
document.addEventListener("DOMContentLoaded", async() => {
let result = await pow2(5);
result = await pow3(result);
result = await pow4(result);
console.log(result);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment