Thursday, July 4, 2024
HomeLanguagesJavascriptUnderscore.js _.keys() Function

Underscore.js _.keys() Function

The _.keys() function is used to return the list of all keys of the given object.

Syntax:

_.keys( object )

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

  • object: It contains the object elements.

Return Value: This function returns the list of all key of the given object.

Below examples illustrate the _.Keys() 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(_.keys(obj));
    </script>
</body>
  
</html>


Output:

Example 2:




<!DOCTYPE html>
<html>
  
<head>
    <script type="text/javascript" src=
    </script>
</head>
  
<body>
    <script type="text/javascript">
  
        var key = _.keys({
            Name: "Ashok",
            Address: "Noida",
            Mobile: "+91 9876543210",
            Email: "neveropen@gmail.com"
        });
  
        console.log(key);
    </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

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments