- includes() メソッドを使用する方法:
const array = [1, 2, 3, 4, 5];
const element1 = 3;
const element2 = 6;
const doesExist1 = array.includes(element1);
const doesExist2 = array.includes(element2);
console.log(doesExist1); // true
console.log(doesExist2); // false
- indexOf() メソッドを使用する方法:
const array = [1, 2, 3, 4, 5];
const element1 = 3;
const element2 = 6;
const index1 = array.indexOf(element1);
const index2 = array.indexOf(element2);
const doesExist1 = index1 !== -1;
const doesExist2 = index2 !== -1;
console.log(doesExist1); // true
console.log(doesExist2); // false
- some() メソッドを使用する方法:
const array = [1, 2, 3, 4, 5];
const element1 = 3;
const element2 = 6;
const doesExist1 = array.some(item => item === element1);
const doesExist2 = array.some(item => item === element2);
console.log(doesExist1); // true
console.log(doesExist2); // false
- filter() メソッドを使用する方法:
const array = [1, 2, 3, 4, 5];
const element1 = 3;
const element2 = 6;
const filteredArray1 = array.filter(item => item === element1);
const filteredArray2 = array.filter(item => item === element2);
const doesExist1 = filteredArray1.length > 0;
const doesExist2 = filteredArray2.length > 0;
console.log(doesExist1); // true
console.log(doesExist2); // false
これらの方法を使用すると、JavaScriptで配列内の2つの要素の存在をチェックすることができます。選択したメソッドによって、存在の有無だけでなく、存在する要素のインデックスや存在する要素のみを抽出することもできます。