Lodash - isArrayLikeObject method



Syntax

_.isArrayLikeObject(value)

This method is like _.isArrayLike except that it also checks if value is an object.

Arguments

  • value (*) − The value to check.

Output

  • (boolean) − Returns true if value is an array-like object, else false.

Example

var _ = require('lodash');

console.log(_.isArrayLikeObject([1, 2]));
console.log(_.isArrayLikeObject('abc'));
console.log(_.isArrayLikeObject(_.noop));

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

true
false
false
lodash_lang.htm
Advertisements