Advertisement
Guest User

Untitled

a guest
Feb 6th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. try {
  2.     const x = functionThatCanThrowException();
  3. } catch (err) {
  4.     console.log("bad");
  5. }
  6.  
  7. try {
  8.     const y = anotherFunctionThatCanThrowException();
  9. } catch (err) {
  10.     console.log("bad2");
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement