0
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 1 year has passed since last update.

JavaScriptで配列を全削除する方法 3選

Posted at

JavaScriptで配列の値を全削除したい時、なにか特別なメソッドが用意されているかと思いきや、どうやらそういったものはなさそうです。
今回はJavaScriptで配列を全削除する方法をまとめてみました。

1,spliceメソッドを使用する方法

Arrayオブジェクトのsplice()メソッドは、配列から要素を削除・追加して組み替えます。
配列名.splice(0)とすることで配列の中身を空にすることができます。
splice.png

2,空で上書き

次に配列を空で上書きする方法です。
[].png

3,lengthを0にする

そして最後に.lengthを用いて空にする方法です。
length0.png

# まとめ
以上、JavaScriptで配列を全削除する方法でした。
開発のお役に立ちましたら幸いです。

0
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
0
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?