throw Error console.error 차이1 [Javascript] throw Error 와 console.error 차이 throw Error("msg"); console.error("msg"); Some of the Differences are: throw Error("msg"): Stops js execution. (실행 중인 JavaScript를 중단시킵니다.) Mostly used for code handling purpose. (주로 코드 처리 목적으로 사용됩니다.) Can alter main flow of execution. (주 실행 흐름을 변경할 수 있습니다.) This syntax is mostly same for all browser as this is specified and validated by W3C. (이 구문은 W3C에서 지정되어 검증되므로 대부분의 브라우저에서 거의 동일합니다.) console.. 2024. 2. 28. 이전 1 다음