Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. (() => {
  2. let x, y;
  3. try {
  4. throw new Error();
  5. } catch (x) {
  6. (x = 1), (y = 2);
  7. console.log(x);
  8. }
  9. console.log(x);
  10. console.log(y);
  11. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement