Skip to content

Instantly share code, notes, and snippets.

@zisra
Last active August 21, 2022 19:55
Show Gist options
  • Save zisra/c5ba491fa64a8d5e5de67a1499bbe334 to your computer and use it in GitHub Desktop.
Save zisra/c5ba491fa64a8d5e5de67a1499bbe334 to your computer and use it in GitHub Desktop.
Network test
const before = new Date();
fetch('https://httpbin.org/get').then(()=>{
const after = new Date();
console.log(`${after-before} Milliseconds`)
}).catch(()=>{
const after = new Date();
console.log(`Failed in ${after-before} Milliseconds`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment