記事へのコメント2件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
String.prototype.indexOf()
const paragraph = "I think Ruth's dog is cuter than your dog!"; const searchTerm = "dog"; const i... const paragraph = "I think Ruth's dog is cuter than your dog!"; const searchTerm = "dog"; const indexOfFirst = paragraph.indexOf(searchTerm); console.log(`The index of the first "${searchTerm}" is ${indexOfFirst}`); // 予想される結果: "The index of the first "dog" is 15" console.log( `The index of the second "${searchTerm}" is ${paragraph.indexOf( searchTerm, indexOfFirst + 1, )}`, ); // 予想される結果: "The in



2015/06/09 リンク