复制1function createRepeat(fn, repeat, interval) {} 2 3const fn = createRepeat(console.log, 3, 4); 4 5fn('helloWorld'); // 每4秒输出一次helloWorld, 输出3次
1function createRepeat(fn, repeat, interval) {} 2 3const fn = createRepeat(console.log, 3, 4); 4 5fn('helloWorld'); // 每4秒输出一次helloWorld, 输出3次
题库维护不易,您的支持就是我们最大的动力!