You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
현재 코드에서는 에러를 발생시킬 때, 로직 내에서 new Error(/* error message */) 를 작성하는데,
이를 하단의 예시과 같이 별도의 모듈로 만들어 사용하면,
에러 객체의 단일 인스턴스(싱글톤)을 재사용할 수 있어 메모리 효율성을 높일 수 있습니다.
또한, 테스트 코드를 작성할 경우, 동일한 에러 인스턴스를 비교함으로써, 생산성을 높일 수 있습니다.
현재 코드에서는 에러를 발생시킬 때, 로직 내에서
new Error(/* error message */)
를 작성하는데,이를 하단의 예시과 같이 별도의 모듈로 만들어 사용하면,
에러 객체의 단일 인스턴스(싱글톤)을 재사용할 수 있어 메모리 효율성을 높일 수 있습니다.
또한, 테스트 코드를 작성할 경우, 동일한 에러 인스턴스를 비교함으로써, 생산성을 높일 수 있습니다.
The text was updated successfully, but these errors were encountered: