Lodash - isTypedArray method



Syntax

_.isTypedArray(value)

Checks if value is classified as a typed array.

Arguments

  • value (*) − The value to check.

Output

  • (boolean) − Returns true if value is a typed array, else false.

Example

var _ = require('lodash');

console.log(_.isTypedArray(new Uint8Array));
console.log(_.isTypedArray([]));

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

Command

\>node tester.js

Output

true
false
lodash_lang.htm
Advertisements