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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。