Lodash _.isIndexed() 方法
Lodash _.isIndexed() 方法检查给定值是否可以被视为“索引”并返回相应的布尔值。索引值是接受索引以访问其元素的值。
句法:
_.isIndexed( value );
参数:此方法采用单个参数,如上所述,如下所述:
- value:要检查索引值的给定值。
返回值:如果给定值被索引,则此方法返回布尔值 true,否则返回 false。
注意:这在普通 JavaScript 中不起作用,因为它需要安装 lodash.js contrib 库。 Lodash.js contrib 库可以使用npm install lodash-contrib 安装。
示例 1:
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Checking for index value
console.log("The Value is Indexed : "
+ _.isIndexed([1, 3, 5]));
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Checking for index value
console.log("The Value is Indexed : "
+ _.isIndexed({1:3, 2:3});
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Checking for index value
console.log("The Value is Indexed : "
+ _.isIndexed("GeeksforGeeks"));
输出:
The Value is Indexed : true
示例 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});
输出:
The Value is Indexed : false
示例 3:
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Checking for index value
console.log("The Value is Indexed : "
+ _.isIndexed("GeeksforGeeks"));
输出:
The Value is Indexed : true