Underscore.js _.find() Function

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

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button