JavaScript Array find() Method

You are Here:

JavaScript Array find() Method

The find() method returns the value of the first element in the array that passes the provided testing function. Otherwise undefined is returned.

Note: This method does not alter the original array.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <p>Find first odd number<p> <script> var myNumber = [1, 2, 3, 4, 5, 6, 7]; function odd(num) { return (num % 2) != 0; } document.write(myNumber.find(odd)); </script> </body> </html>

Syntax

Array.find(function(value, index, arr), thisArg); //or Array.find(functionName);

Parameter Values

ValueTypeExplanation
function(value, index, arr)RequiredFunction to test for each element in an array.
Value - Specifies a value or element in an array.
index - Specifies the index of a value or element in an array.
arr - Specifies the whole array.
thisArgOptionalSpecifies a value against which each element in an array is tested.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <p>Find first odd number<p> <script> var myNumber = [1, 2, 3, 4, 5, 6, 7]; function odd(num, index, arr) { return (num % this) != 0; } document.write(myNumber.find(odd, 2)); </script> </body> </html>

Reminder

Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in JavaScript.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author