El método Lodash _.stubString() se usa para crear una string vacía.
Sintaxis:
_.stubString()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve una string vacía.
Ejemplo 1:
Javascript
// Requiring the lodash library const _ = require("lodash"); // Use of _.stubString() method // to create an empty String let gfg = _.stubString(); // Printing the output console.log(gfg);
Producción :
""
Ejemplo 2:
Javascript
// Requiring the lodash library const _ = require("lodash"); // Use of _.stubString() method // to create 5 empty String let gfg = _.times(5, _.stubString); // Printing the output console.log(gfg);
Producción :
["", "", "", "", ""]
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