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