📜  Lodash _.stubArray() 方法

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

Lodash _.stubArray() 方法

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

_.stubArray()方法用于创建一个新的空数组。

句法:

_.stubArray()

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

返回值:它返回一个新的空数组。

示例 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);


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);


输出:

[]

示例 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);

输出:

[[], [], [], [], []]