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
相关用法
- Lodash _.isSet()用法及代码示例
- Lodash _.isSymbol()用法及代码示例
- Lodash _.isString()用法及代码示例
- Lodash _.isSafeInteger()用法及代码示例
- Lodash _.isArray()用法及代码示例
- Lodash _.isArrayBuffer()用法及代码示例
- Lodash _.isArrayLike()用法及代码示例
- Lodash _.isArrayLikeObject()用法及代码示例
- Lodash _.isBoolean()用法及代码示例
- Lodash _.isBuffer()用法及代码示例
- Lodash _.isDate()用法及代码示例
- Lodash _.isEmpty()用法及代码示例
- Lodash _.isEqual()用法及代码示例
- Lodash _.isEqualWith()用法及代码示例
- Lodash _.isAssociative()用法及代码示例
- Lodash _.isDecreasing()用法及代码示例
- Lodash _.isNaN()用法及代码示例
- Lodash _.isPlainObject()用法及代码示例
- Lodash _.isNative()用法及代码示例
- Lodash _.isElement()用法及代码示例
- Lodash _.isArguments()用法及代码示例
- Lodash _.isInteger()用法及代码示例
- Lodash _.isFunction()用法及代码示例
- Lodash _.isFinite()用法及代码示例
- Lodash _.isMap()用法及代码示例
注:本文由纯净天空筛选整理自epistler_999大神的英文原创作品 Lodash _.isSequential() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。