マガジンのカバー画像

Kent C. Doddsブログ翻訳

4
運営しているクリエイター

#TypeScript

TypeScriptにおけるcatchブロックでのエラーメッセージ取得

さて、ここから始めましょうか。

const reportError = ({message}) => { // send the error to our logging service...}try { throw new Error('Oh no!')} catch (error) { // we'll proceed, but let's report it reportError

もっとみる