当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.isSequential()用法及代码示例


Lodash 是一个运行在 underscore.js 之上的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。

_.isSequential() 方法用于检查给定值是否是顺序复合类型值。顺序复合类型的示例是数组和参数。

用法:

_.isSequential( value )

参数:该方法接受如上所述和如下所述的单个参数:

  • value:它是要检查顺序类型值的值。

返回值:该方法返回一个布尔值。如果给定值是顺序类型,则返回 true,否则返回 false。

注意:这在普通 JavaScript 中不起作用,因为它需要Lodash 贡献库待安装。Lodash 贡献库可以使用安装npm 安装lodash-contrib.

示例 1:在此示例中,使用此方法检查数组。

Javascript


// Defining the lodash-contrib variable  
var _ = require('lodash-contrib'); 
  
// Using the _.isSequential() method 
console.log("The Value is Sequential : " + 
  _.isSequential([2, 4, 6, 8]));

输出:

The Value is Sequential : true

示例 2:在此示例中,使用此方法检查具有键值对的对象。

Javascript


// Defining the lodash-contrib variable  
var _ = require('lodash-contrib'); 
  
// Using the _.isSequential() method 
console.log("The Value is Sequential : " + 
  _.isSequential( {1:5, 5:10} ));

输出:

The Value is Sequential : false

示例 3:在此示例中,使用此方法检查字符串。

Javascript


// Defining the lodash-contrib variable  
var _ = require('lodash-contrib'); 
  
// Using the _.isSequential() method 
console.log("The Value is Sequential : " + 
  _.isSequential("GeeksforGeeks"));

输出:

The Value is Sequential : false


相关用法


注:本文由纯净天空筛选整理自epistler_999大神的英文原创作品 Lodash _.isSequential() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。