Open In App
Related Articles

Lodash _.isIndexed() Method

Improve Article
Improve
Save Article
Save
Like Article
Like

The Lodash _.isIndexed() method checks whether the given value can be considered “Indexed” or not and returns the corresponding boolean value. Indexed value is one that accepts an index to access its elements.

Syntax:

_.isIndexed( value );

Parameters: This method takes single parameter as mentioned above and described below:

  • value: Given value to be checked for Indexed value.

Return Value: This method returns a Boolean value true if the given value is Indexed, else false.

Note: This will not work in normal JavaScript because it requires the lodash.js contrib library to be installed. Lodash.js contrib library can be installed using npm install lodash-contrib.

Example 1:

Javascript




// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
// Checking for index value
console.log("The Value is Indexed : " 
    + _.isIndexed([1, 3, 5]));


Output:

The Value is Indexed : true

Example 2:

Javascript




// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
// Checking for index value
console.log("The Value is Indexed : " 
    + _.isIndexed({1:3, 2:3});


Output:

The Value is Indexed : false

Example 3:

Javascript




// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
// Checking for index value
console.log("The Value is Indexed : " 
    + _.isIndexed("GeeksforGeeks"));


Output:

The Value is Indexed : true

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 : 29 Sep, 2020
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials