Lodash_.isSequential()函数
Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.isSequential() 方法用于检查给定值是否为顺序复合类型值。顺序复合类型的示例是数组和参数。
句法:
_.isSequential( value )
参数:此方法接受如上所述和如下所述的单个参数:
- value:要检查的值是否为顺序类型的值。
返回值:此方法返回一个布尔值。如果给定值是顺序类型,则返回 true,否则返回 false。
注意:这在普通 JavaScript 中不起作用,因为它需要安装Lodash contrib 库。 Lodash contrib 库可以使用npm install 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]));
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} ));
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 : 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