Skip to content

Instantly share code, notes, and snippets.

@shiopon01
Created January 31, 2019 02: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 shiopon01/a0e59d840279d90cedf6936852c9edb9 to your computer and use it in GitHub Desktop.
Save shiopon01/a0e59d840279d90cedf6936852c9edb9 to your computer and use it in GitHub Desktop.
const checkName = (name) => {
if (name.length > 5) {
return true;
}
throw new Error("My Error");
}
const name = 'piyo'
//
try {
checkName(name)
} catch (err) {
next(err)
return
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment