Skip to content

Instantly share code, notes, and snippets.

@KevinPy
Created November 25, 2021 10:29
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 KevinPy/414aac942cd2f73405d9343a13e60cdf to your computer and use it in GitHub Desktop.
Save KevinPy/414aac942cd2f73405d9343a13e60cdf to your computer and use it in GitHub Desktop.
Open Stackoverflow auto when your request fail
try {
// Do something
}
catch (error) {
const url = `https://stackoverflow.com/search?q=[js]+${error.message}`;
window.open(url, '_blank');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment