
Here is an example of JavaScript array findIndex() Method: ĭocument.getElementById("findin").innerHTML = ages. With findIndex () and indexOf () you can do it in 2 lines: const valueToSearch 'whatever' let row yourArray.findIndex ( (elem)>elem.includes (valueToSearch)) let column yourArray row. The value "undefined" will be passed as its "this" value, If this parameter is empty


This parameter is optional and it is used for a value to be passed to the function to be used as its "this" value. It is optional and is used for the array object the current element belongs to This argument is optional and is used for the array index of the current element It Required the current value of the element It Required a function to be run for each element in the array. Syntax: array.findIndex(function(currentValue, index, arr), thisValue) Parameter Values Parameter

If no element satisfies the condition, it returns -1. The JavaScript array findIndex() method is used to return the index of the first element of the given array pass a test that satisfies the provided function condition.
