Write Your JavaScript Code Here

// Array :- It is collection more the single value inside an variable // include() :- this method return if the array contains the specific element or not // array.includes(element, start) const arr1=[1,2,3,4,5,8]; console.log(arr1.includes(2)); console.log(arr1.includes(6));

Output: