Saturday, August 30, 2025
HomeLanguagesJavascriptUnderscore.js _.allKeys() Function

Underscore.js _.allKeys() Function

The _.allKeys() function is used to return all keys of the object and inherited properties.

Syntax:

_.allKeys( object )

Parameters: This function accept oa single parameter as mentioned above and described below:

  • object: It contains the object element that holds the elements of key and value pair.

Return Value: It returns all key of the object and inherited properties.

Below examples illustrate the _.allKeys() function in Underscore.js:

Example 1:




<!DOCTYPE html>
<html>
  
<head>
    <script type="text/javascript" src=
    </script>
</head>
  
<body>
    <script type="text/javascript">
  
        var obj = {
            Company: "neveropen",
            Address: "Noida",
            Contact: "+91 9876543210",
            Email: "abc@gfg.com"
        }
        console.log(_.allKeys(obj));
    </script>
</body>
  
</html>


Output:

Example 2:




<!DOCTYPE html>
<html>
  
<head>
    <script type="text/javascript" src=
    </script>
</head>
  
<body>
    <script type="text/javascript">
  
        function Geeks(name) {
            return this.name = name;
        }
  
        Geeks.prototype.neveropen = true;
  
        console.log(_.allKeys(new Geeks("Company")));
    </script>
</body>
  
</html>


Output:

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen 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!
RELATED ARTICLES

Most Popular

Dominic
32249 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6617 POSTS0 COMMENTS
Nicole Veronica
11792 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11838 POSTS0 COMMENTS
Shaida Kate Naidoo
6731 POSTS0 COMMENTS
Ted Musemwa
7013 POSTS0 COMMENTS
Thapelo Manthata
6689 POSTS0 COMMENTS
Umr Jansen
6701 POSTS0 COMMENTS