//实现一个repeat方法,要求如下:
// 需要实现的函数
// const repeatFunc = repeat(console.log, 4, 3000);
// repeatFunc(“hello world”); //会输出4次 hello world, 每次间隔3秒
//利用map实现
function repeat(func, times, wait) {
// 补全
return function (text) {
let arr = [];
for (let i = 0; i < times; i++) {
arr.push(i * 3000);
}
arr.map((p) => {setTimeout(() => {console.log(text);}, p);
});
};
}
//利用reduce实现
function repeat(func, times, wait) {
// 补全
return function (text) {
let arr = [];
for (let i = 0; i < times; i++) {
arr.push(3000);
}
arr.reduce((ac, p) => {setTimeout(() => {console.log(text);}, ac);return ac + p;
}, 0);
};
}
// 使下面调用代码能正常工作
const repeatFunc = repeat(console.log, 4, 3000);
repeatFunc(“hello world”); //会输出4次 hello world, 每次间隔3秒