gpt4 book ai didi

Javascript 重复一个函数 x 次

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:31:44 25 4
gpt4 key购买 nike

我正在尝试开发一个函数,该函数重复一个函数 x 次,仅一次,而不是基于 settimerintervalsettimeout 或任何基于时间的东西。我不想直接使用 while/for 循环,我想使用这个 repeat 函数。

我试过这样的:

function repeat(func, times) {
for (x = 0; x < times; x++) {
eval(func)
}
}

但是 eval 不适用于函数。

最佳答案

const func = () => console.log("hi");
const times = 3;

Array.from({length: times}, () => func());

我定义了一个函数。我设置重复次数功能。我制作了一个数组,其大小为重复函数的次数。我在数组的每个元素上运行“定义的函数”。

关于Javascript 重复一个函数 x 次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35556876/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com