throw.js 57 B

12345
  1. try {
  2. throw 123;
  3. } catch (e) {
  4. console.log(e);
  5. }