Использование экземпляра in_array в JavaScript

const array1 = [1, 2, 3];

console.log(array1.includes(2));
Mohamad