gpt4 book ai didi

javascript - 如何编写一个可能触发的函数,给定一定的概率,比如 : 0 - 100?

转载 作者:行者123 更新时间:2023-11-30 08:50:12 28 4
gpt4 key购买 nike

我需要一个有一定概率触发的函数,比如:

function broken_fn ( function () { console.log( Math.random() ); }, 33 ) {
// code...
}

用于我正在开发的简单在线游戏...

最佳答案

怎么样:

function maybeFire (fn, probability) {
if (Math.random() < probability) {
fn();
}
}

用作:

maybeFire(function() { console.log('fired!'); }, .5);

关于javascript - 如何编写一个可能触发的函数,给定一定的概率,比如 : 0 - 100?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18568012/

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