12
5

More than 5 years have passed since last update.

JavaScriptで、変数の値がどれかに一致すればtrueになる式の書き方

Last updated at Posted at 2017-12-04

===||を使ったオーソドックスな書き方

const x = 'banana';
console.log(x === 'apple' || x === 'banana' || x === 'orange'); // => true

ES2016のArray.prototype.includes()を使った書き方

const x = 'banana';
console.log(['apple', 'banana', 'orange'].includes(x)); // => true
12
5
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
12
5