This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function getPeople() { | |
const members = await fetch("/members"); | |
const nonMembers = await fetch("/non-members"); | |
return members.concat(nonMembers); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (var i = 1; i < 5; i++) { | |
setTimeout(() => console.log(i), 0) | |
} |