1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

配列から要素を削除する方法

Last updated at Posted at 2018-09-30

####配列から要素を削除したい場合以下の方法がある。

  • shiftメソッド ー 先頭の要素を削除する
  • popメソッド ー 末尾要素を削除する
  • spliceメソッド ー 途中の要素を削除する。引数の第一引数には先頭に残す要素の数を、第二引数には削除する要素の数を代入する。
  • sliceメソッド ー 途中の要素を取り出す。引数の第一引数には先頭の不要な要素の数を、第二引数には必要な要素の最後の数を代入する。他のメソッドと異なり、元の配列の要素を変化させない。
var men = ['Y','A','B'];
men.shift();
console.log(men);
 (2) ["A", "B"]

men.pop();
console.log(men);
 (2) ["Y", "A"]


men.splice(1,1);
console.log(men);
(2) ["Y", "B"]

var a = men.slice(1,2);
console.log(a);
["A"]

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?