📅  最后修改于: 2023-12-03 15:02:47.222000             🧑  作者: Mango
Lodash
是一个 JavaScript 实用工具库,提供了许多工具函数,其中就包括 _.times()
方法。本篇介绍 Lodash _.times()
方法的用法、语法和示例代码。
_.times()
方法可以用来多次执行一个函数,可以指定执行的次数。
_.times(n, [iteratee=_.identity])
参数说明:
n
(number):要执行的次数,必选。iteratee
(Function):可选函数,用来处理每次执行结果。默认返回结果为当前执行次数。返回结果:
以下是使用 _.times()
方法的示例代码:
const _ = require('lodash');
// 示例1:执行多次
_.times(5, () => {
console.log('Iterating...');
});
// 示例2:指定执行次数,处理每次的返回结果
const timesArray = _.times(3, (i) => {
return `Index: ${i}`;
});
console.log(timesArray);
// Output: ['Index: 0', 'Index: 1', 'Index: 2']
输出结果:
Iterating...
Iterating...
Iterating...
Iterating...
Iterating...
['Index: 0', 'Index: 1', 'Index: 2']
以上示例代码说明了 _.times()
方法的两种用法: