// https://www.runoob.com/jsref/jsref-includes.html // arr.includes(searchElement) // arr.includes(searchElement, fromIndex) // const arr = [1, 2, 3, 4, 5, 6] // console.log(arr.includes(3, -2))