find a value from an array javascirpt code example
Example 1: js find value in array
const array1 = [5, 12, 8, 130, 44];
const found = array1.find(element => element > 10);
console.log(found);
// expected output: 12
Example 2: find number in array js
array.include(numberWhichYouWantToFInd);
// if present it will return true otherwise false