JSFiddle - React, Tailwind, and code Playground

by hyunkikim

JavaScript 1.7

function canNotCatch () {
  try {
    setTimeout(() => {
      blah(); // 에러가 여기서 잡힙니다.
    }, 1000);
  } catch {
    throw new Error('error');
  }
}


canNotCatch();