El método Lodash _.stubTrue() se usa para devolver un valor verdadero . Siempre devuelve verdadero cuando se le llama.
Sintaxis:
_.stubTrue()
Parámetros: este método no acepta ningún parámetro único.
Valor devuelto: Devuelve un valor verdadero.
Ejemplo 1:
Javascript
// Requiring the lodash library const _ = require("lodash"); // Use of _.stubTrue() method let gfg = _.stubTrue(); // Printing the output console.log(gfg);
Producción :
true
Ejemplo 2:
Javascript
// Requiring the lodash library const _ = require("lodash"); for(let i = 0; i < 10; i++){ // Printing the output console.log( _.stubTrue() ); }
Producción :
true true true true true true true true true true
Publicación traducida automáticamente
Artículo escrito por jana_sayantan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA