array-length
v0.1.2
Published
Get length of array.
Downloads
44
Readme
array-length
NOTE: array-length was renamed to @extra-array/length.
Get length of array.
const length = require('array-length');
// length(<value>)
length(0);
// 0
length(null);
// 0
length(['d', 'c', '9']);
// 3