私は、formIndex ofstring.indexOf(searchValue [、fromIndex])の使用法は何ですか?indexOf fromIndex関数?
for (var sA in secondOnArray) {
if (firstOnArray.indexOf(secondOnArray[sA]) > -1) { // what is the purpose of [sA] there?
result+= 0;
}
}
Mozilla String indexOf()とw3Schools indexOf()例は非常に異なるようだ:私はこのようなコードを見つけましたか?
"* [sA]の目的は何か*" [for..in'ループ](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/ for ... in)キー/プロパティ名を反復します。この場合、 'sA'に割り当てられます。値には依然としてアクセスする必要があります。 –
関連:[newbsのAPIドキュメントを読むには?](http://stackoverflow.com/questions/10925478/how-to-read-api-documentation-for-newbs) –