Open In App
Related Articles

Underscore.js _.omit() Function

Improve Article
Improve
Save Article
Save
Like Article
Like

The _.omit() function is used to return a copy of the object that filtered to omit the blacklisted keys.

Syntax:

_.omit(object, *keys)

Parameters: This function accept two parameters as mentioned above and described below:

  • object: This parameter holds the value of an object.
  • keys: It is an optional parameter. It contains the key name that value need to be omitted.

Return Value: It returns a copy of the object that filtered to omit the blacklisted keys.

Example 1:




<!DOCTYPE html>
<html>
  
<head>
    <script type="text/javascript" src=
    </script>
</head>
  
<body>
    <script type="text/javascript">
  
        var info = {
            Company: 'GeeksforGeeks',
            Address: 'Noida',
            Contact: '+91 9876543210'
        };
  
        console.log(_.omit(info, 'Company', 'Address'));
    </script>
</body>
  
</html>


Output:

Example 2:




<!DOCTYPE html>
<html>
  
<head>
    <script type="text/javascript" src=
    </script>
</head>
  
<body>
    <script type="text/javascript">
  
        var info = {
            key1: 10,
            key2: 20,
            key3: 30,
            key4: 40,
            key5: 50
        };
  
        console.log(_.omit(info, function (value, key, info) {
            return value == 10 || value == 50;
        }));
    </script>
</body>
  
</html>


Output:


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 : 01 Aug, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials