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.
相關用法
- Lodash _.nth()用法及代碼示例
- Lodash _.take()用法及代碼示例
- Lodash _.last()用法及代碼示例
- Lodash _.xor()用法及代碼示例
- Lodash _.castArray()用法及代碼示例
- Lodash _.differenceWith()用法及代碼示例
- Lodash _.fromPairs()用法及代碼示例
- Lodash _.drop()用法及代碼示例
- Lodash _.intersectionWith()用法及代碼示例
- Lodash _.differenceBy()用法及代碼示例
- Lodash _.chunk()用法及代碼示例
- Lodash _.sortedLastIndex()用法及代碼示例
- Lodash _.cloneDeep()用法及代碼示例
- Lodash _.find()用法及代碼示例
- Lodash _.zipWith()用法及代碼示例
- Lodash _.zipObject()用法及代碼示例
- Lodash _.isArrayLike()用法及代碼示例
- Lodash _.isArray()用法及代碼示例
- Lodash _.clone()用法及代碼示例
- Lodash _.sampleSize()用法及代碼示例
注:本文由純淨天空篩選整理自taran910大神的英文原創作品 Lodash _.isEmpty() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。