JavaScriptのindexOfメソッドの使用方法と例
配列でのindexOfの使用例:const fruits = ['りんご', 'バナナ', 'オレンジ', 'りんご', 'パイナップル']; // 'りんご'の最初のインデックスを検索 const firstIndex = fruits.indexOf('りんご'); console.log(firstIndex); // 出力: 0 // 'りんご'の最後のインデックスを検索 const lastIndex = fruits.lastIndexOf('りんご'); console.log(lastIndex); // 出力: 3>>More