1
Google 스크립트의 객체에서 findIndex()를 사용하려고하는데 작동하지 않습니다.Google 스크립트의 indexOf
이function myFunction() {
var searchingJohn = "John";
var DATA = {namesList: []};
DATA.namesList.push({name: "John", otherDataForThisName: []});
var result = DATA.namesList.findIndex(function (element)
{return element.name == this;}, searchingJohn);
return result;
}
아니라 자바 스크립트는 Console하지만 구글 스크립트에서이 작품은 나에게 돌려 : 여기 exemple이다 "형식 오류를 : Fonction findIndex이 개체에서 찾을 수 없습니다 ....."
Google 스크립트 란 무엇입니까? –
어떤 브라우저를 사용하십니까? 'findIndex'는 IE에서 사용할 수없는 ES6 메소드입니다. – Barmar
또한 'this'는 콜백 함수에서 작동하지 않습니다. – Barmar