📜  Lodash _.stubTrue() 方法

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

Lodash _.stubTrue() 方法

Lodash _.stubTrue() 方法用于返回一个值。它在被调用时总是返回true

句法:

_.stubTrue()

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

返回值:它返回一个真值。

示例 1:

Javascript
// Requiring the lodash library  
const _ = require("lodash");            
    
// Use of _.stubTrue() method 
let gfg = _.stubTrue(); 
        
// Printing the output  
console.log(gfg);


Javascript
// Requiring the lodash library  
const _ = require("lodash");            
    
for(let i = 0; i < 10; i++){
    // Printing the output  
    console.log( _.stubTrue() );
}


输出 :

true

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");            
    
for(let i = 0; i < 10; i++){
    // Printing the output  
    console.log( _.stubTrue() );
}

输出 :

true
true
true
true
true
true
true
true
true
true