Avoid the use of the __proto__ property
이 페이지는 아직 한국어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우
언제든지 연락주시기 바랍니다.ID: javascript-best-practices/no-proto
Language: JavaScript
Severity: Warning
Category: Error Prone
Description
The __proto__ property has been deprecated as of ECMAScript 3.1.
Use a suitable alternative to __proto__ like Object.getPrototypeOf and Object.setPrototypeOf instead.
Non-Compliant Code Examples
var a = test.__proto__;
var a = test['__proto__'];
var a = test[`__proto__`];
test[`__proto__`] = function () {};
Compliant Code Examples
var a = test[__proto__];
var __proto__ = null;
foo[`__proto`] = null;
foo[`__proto__\n`] = null;
class C { #__proto__; foo() { this.#__proto__; } }
원활한 통합. Datadog Code Security를 경험해 보세요