gpt4 book ai didi

javascript - 如何在 0 和 1 之间换行

转载 作者:行者123 更新时间:2023-12-04 10:06:13 25 4
gpt4 key购买 nike

我试图将任何数字包装在 0 和 1 之间。(就像对整数使用模 % 一样)

例如,
wrap(0.99)应该返回 0.99 .
wrap(1.04)应该返回 0.04 .
wrap(12)应该返回 0 .

是否有任何内置函数可以在 Javascript 中执行此操作?

最佳答案

在 JS 中数字被表示为 double 值,所以 1.04%1已经可以工作了。

MDN: Number :

The Number JavaScript object is a wrapper object allowing you to work with numerical values. A Number object is created using the Number() constructor. A primitive type object number is created using the Number() function.



console.log(0.99%1)
console.log(1.04%1)
console.log(12%1)


MDN: Remainder

关于javascript - 如何在 0 和 1 之间换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61577705/

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