當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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