4
0

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 3 years have passed since last update.

【javascript】空の配列に対するevery/someメソッド

Last updated at Posted at 2020-12-04

こんなの知らなかった。。。
忘れないようにメモ。

#everyメソッド

[].every(x => false);	//true

注意: このメソッドを空の配列に対して呼び出すと、無条件に true を返します。

#someメソッド

[].some(x => true);	//false

注: このメソッドは空の配列ではあらゆる条件式に対して false を返します。

4
0
4

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?