📜  Underscore.js _.isIndexed() 方法

📅  最后修改于: 2022-05-13 01:56:24.996000             🧑  作者: Mango

Underscore.js _.isIndexed() 方法

这 _。 isIndexed()方法检查给定值是否可以被视为“索引”并返回相应的布尔值。索引值是接受数字索引来访问其元素的值。

句法:

_.isIndexed( value );

参数:

  • value:要检查索引值的给定值。

返回值:此方法返回一个布尔值(如果给定值被索引,则返回 true,否则返回 false)。

注意:这在普通 JavaScript 中不起作用,因为它需要安装 underscore.js contrib 库。 Underscore.js contrib 库可以使用npm install underscore-contrib 安装。

示例 1:可以将数组视为索引值,并且可以使用数字索引访问其元素。

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


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


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


输出:

The Value is Indexed : true

示例 2:此方法为映射返回 false。

Javascript

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

输出:

The Value is Indexed : false

示例 3:对于字符串,此方法返回 true。

Javascript

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

输出:

The Value is Indexed : true