JavaScript 에러에러
TypeError: Cannot add property, object is not extensibleTypeError: 프로퍼티를 추가할 수 없음, 객체가 확장 불가능
확장 불가능하게 설정된 객체에 프로퍼티를 추가하려는 시도가 있었습니다.
browsernode
상세 보기 TypeError: Cannot delete property of objectstrict 모드에서 객체의 non-configurable 프로퍼티를 삭제하려고 시도했습니다.
Object.defineProperty()로 프로퍼티가 non-configurable(configurable: false)로 정의되었거나, 객체가 sealed 또는 frozen 상태입니다. strict 모드에서는 이러한 프로퍼티를 삭제하려고 하면 조용히 실패하는 대신 예외가 발생합니다.
non-configurable 프로퍼티는 삭제하지 마세요. 변경 가능한 객체가 필요하다면 스프레드 문법이나 Object.assign()으로 복사본을 만들고 원하지 않는 프로퍼티를 제외하세요. 객체가 frozen 또는 sealed 상태인지 확인하세요.
TypeError: Cannot add property, object is not extensible확장 불가능하게 설정된 객체에 프로퍼티를 추가하려는 시도가 있었습니다.
SyntaxError: JSON.parse unexpected characterJSON.parse()가 작은따옴표, 후행 쉼표, 따옴표 없는 키와 같이 잘못된 JSON 구문을 만났습니다.
TypeError: Cannot set properties of undefined/nullundefined 또는 null에 속성을 설정하려는 시도가 발생했습니다.
Error: Cannot find moduleNode.js가 검색된 경로 어디에서도 지정된 모듈을 찾을 수 없었습니다.
RangeError: Invalid date유효한 날짜를 요구하는 Date 메서드에 유효하지 않은 날짜 문자열이 전달되었습니다.
URIError전역 URI 처리 함수(decodeURIComponent, encodeURI)가 형식이 잘못된 URI를 받았습니다.