LoginSignup
0
0

More than 3 years have passed since last update.

JavaScriptで配列に特定の要素が含まれているか判定する

Last updated at Posted at 2019-04-30

Array​.prototype​.includes()を使えば
探している要素が含まれていればtrue, 含まれていなければfalseを返してくれます。

const array = [1, 2, 3, 4, 5];

const result1 = array.includes(3); //true
const result2 = array.includes(6); //false

ES2016で実装された模様。

参考

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