Fetching Data from the Internet
Modern apps get their data from APIs. fetch() asks another computer for information, and await waits politely for the reply.
What you'll learn
Use fetch with async/await and render the result.
New command
const res = await fetch(url)
๐ป Code Editorhtml
๐ฌ
Press Run Code to see your creation!