Skip to content

Instantly share code, notes, and snippets.

@tikarammardi
Last active August 9, 2022 02:48
Show Gist options
  • Save tikarammardi/a488afdd0ef226374a6011f302aa8ce1 to your computer and use it in GitHub Desktop.
Save tikarammardi/a488afdd0ef226374a6011f302aa8ce1 to your computer and use it in GitHub Desktop.
check specific error types
try{
// some code to run
}catch(e){
if(e instanceof EvalError ){
//do something
}else{
//do something else
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment