Guest User

Untitled

a guest
Jan 12th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. function fun1() {
  2. throw new Error("ERROR!!!!!!");
  3. }
  4.  
  5. function fun2() {
  6. fun1();
  7. }
  8.  
  9. function fun3() {
  10. fun2();
  11. }
  12.  
  13. fun3();
Add Comment
Please, Sign In to add comment