추가 내용 기입하기 ( cause ) 추가 내용 기입하기 ( cause )MDN : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Error/cause const test = new Error('message', {cause: {hi:"hi", hello:"hello"}}); test.message // message test.cause // {hi: 'hi', hello: 'hello'}