제가 찾은 해결책은 다음과 같습니다.
indexOf 메소드를 사용하기 전, 다음 js를 실행하세요. 배열에 indexOf 메소드가 없는 것으로 확인되면 이 메소드를 추가하는 것이 원칙입니다.
from = (from < 0)
? Math.ceil(from)
: Math.floor(from);
if (from < 0)
from = len;
{
if (from in this &&
this[from] === elt)
return from;
}
반환 -1;
};
}