The _.find() function looks at each element of the list and returns the first occurrence of the element that satisfy the condition. If any element of list is not satisfy the condition then it returns the undefined
value.
Syntax:
_.find(list, predicate, [context])
Parameters: This function accept three parameters as mentioned above and described below:
- list: This parameter is used to hold the list of items.
- predicate: This parameter is used to hold the truth condition.
- context: The text content which need to be display. It is an optional parameter.
Return value: It returns the first occurrence of the element that satisfy the condition.
Example 1:
<!DOCTYPE html>
< html >
< head >
< script type = "text/javascript" src =
</ script >
</ head >
< body >
< script type = "text/javascript" >
var oddNo = _.find([5, 6, 7, 8, 9, 10],
function (num) {
return num % 2 != 0;
});
console.log(oddNo);
</ script >
</ body >
</ html >
|
Output:
5
Example 2:
<!DOCTYPE html>
< html >
< head >
< script type = "text/javascript" src =
</ script >
</ head >
< body >
< script type = "text/javascript" >
var words = ['javascript', 'java', 'unix',
'hypertext', 'underscore', 'CSS'];
const result = words.find(word => word.length == 9);
console.log(result);
</ script >
</ body >
</ html >
|
Output:
hypertext
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
27 Dec, 2021
Like Article
Save Article