gpt4 book ai didi

javascript - javascript求幂中的数学函数

转载 作者:行者123 更新时间:2023-12-03 11:22:43 26 4
gpt4 key购买 nike

我在 javascript 中进行了一些计算,其中包括求幂。

谁能说说这句话为什么返回值1???

        alert ((0.03+1)^(271/365)-1);

谢谢

最佳答案

^ 实际上是一个 bitwise XOR operator .您正在寻找 Math.pow():

alert(Math.pow((0.03+1), (271/365))-1);

关于javascript - javascript求幂中的数学函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15648431/

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