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


Lodash _.isEmpty()用法及代碼示例


Lodash_.isEmpty()方法 檢查是否價值是一個空對象,集合,Map或集合。如果對象沒有自己的可枚舉字符串鍵屬性,則將它們視為空。如果集合的值為0,則認為它們為空長度。同樣,如果Map和集合的值為0,則認為它們為空尺寸

用法:

_.isEmpty( value )

參數:此方法接受如上所述和以下描述的單個參數:

  • value:此參數保存需要檢查為空值的值。

返回值:此方法返回一個布爾值(如果給定值是Empty值,則返回true,否則返回false)。

範例1:該方法返回真正當該值為null時。



// Defining Lodash variable 
const _ = require('lodash');  
     
// Checking for Empty Value 
console.log("The Value is Empty:"
        +_.isEmpty(null));

輸出:

The Value is Empty:true

範例2:該方法返回真正當數組為空時。

// Defining Lodash variable 
const _ = require('lodash');  
     
var val = [] 
  
// Checking for Empty Value 
console.log("The Value is Empty:"
        +_.isEmpty(val));

輸出:

The Value is Empty:true

範例3:該方法返回真正布爾值。

// Defining Lodash variable 
const _ = require('lodash');  
     
var val = false; 
  
// Checking for Empty Value 
console.log("The Value is Empty:" 
        +_.isEmpty(val));

輸出:

The Value is Empty:true

範例4:在t他的榜樣該方法將返回

// Defining Lodash variable 
const _ = require('lodash');  
     
var val = { "a":1 }; 
  
// Checking for Empty Value 
console.log("The Value is Empty:" 
        +_.isEmpty(val)); 

輸出:

The Value is Empty:false

注意:由於它需要安裝lodash庫,因此在正常的JavaScript中將無法使用。

可以使用以下方法安裝Lodash庫npm install lodash.




相關用法


注:本文由純淨天空篩選整理自taran910大神的英文原創作品 Lodash _.isEmpty() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。