LoginSignup
0
0

More than 3 years have passed since last update.

JavaScriptで配列から特定の値を含む要素を削除する

Posted at

完全一致の場合

const array = ["ねこ", "いぬ", "とり", "さる", "キジバト"];

const indexOfDog = array.indexOf("いぬ");

array.splice(indexOfDog, 1);

部分一致の場合

const array = ["ねこ", "いぬ", "とり", "さる", "キジバト"];

const indexOfPigeon = array.findIndex(animal => animal.includes("バト"))

array.splice(indexOfPigeon, 1);

どちらもインデックスを取得してからsplice()で削除する。
findIndex()は条件式がtrueになった最初の要素のインデックスしか取得しないので注意。
splice()の第一引数は削除する要素の位置、第二引数はそこから削除する要素の数。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0