do-not-access-objectprototype-method

PRITRAS·2023년 1월 21일
0

작업을 하던 도중, 정의가 되지 않은 obj 에 관하여 hasOwnProperty를 사용할 때
생기는 에러이다.

아래 코드로 해결을 하였으며, 자세한 내용은 더 공부해봐야 할 것 같다.

if(Object.prototype.hasOwnProperty.call(events, key)) {
    // This would compile without any issue !
    console.log("The object has the property");
}

참조링크: https://ourcodeworld.com/articles/read/1425/how-to-fix-eslint-error-do-not-access-objectprototype-method-hasownproperty-from-target-object-no-prototype-builtins

profile
세상에 착한 개는 없다

0개의 댓글