Skip to content

Instantly share code, notes, and snippets.

@minnacaptain
Created July 23, 2021 12:41
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Get content from internet
const getContentFromInternet = () =>
fetch(
"https://raw.githubusercontent.com/minnacaptain/have-you-tried-deno-yet/master/example_data.txt",
).then((t) => t.text());
// calculateAverageScore is unchanged
console.log("Average score: " + await calculateAverageScore(getContentFromInternet));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment