📜  Lodash _.stubFalse() 方法

📅  最后修改于: 2022-05-13 01:56:54.745000             🧑  作者: Mango

Lodash _.stubFalse() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。

_.stubFalse()方法用于始终返回假值。使用普通false值和使用_.stubFalse()方法的基本区别在于 lambda函数,因此在 React 渲染函数中使用时,它们可能会创建不必要的重新渲染。 Lodash 存根没有这个问题。

句法:

_.stubFalse()

参数:此方法不接受任何参数。

返回值:它返回错误的布尔值。

示例 1:

Javascript
// Requiring the lodash library  
const _ = require("lodash");            
    
// Using the _.stubFalse() method 
let false_val = _.stubFalse(); 
        
// Printing the output  
console.log(false_val);


Javascript
// Requiring the lodash library  
const _ = require("lodash");            
    
// Using the _.stubFalse() method 
// to create 5 false values
let false_vals = _.times(5, _.stubFalse); 
        
// Printing the output  
console.log(false_vals);


输出:

'false'

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");            
    
// Using the _.stubFalse() method 
// to create 5 false values
let false_vals = _.times(5, _.stubFalse); 
        
// Printing the output  
console.log(false_vals);

输出:

[false, false, false, false, false]