本文介绍了如何在Javascript中进行乘法除法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我运行一些代码,无论是否有括号,我得到相同的结果,即使我知道乘法具有更高的优先级然后除法。以下是示例:
I run some code and I get same results with or without parenthesis, even if I know that multiplication have higher precedence then division. Here is example:
let calculate = 16 / 30 * 100
我认为结果与
let calculate = (16 / 30) * 100
所以我不知道哪个优先级更高。
So I don't know which of them has higher precedence.
推荐答案
看到这个小提琴:
代码评估于此订单:
- 圆括号
- 乘以和除
- 加法和减法
如果你在同一个等式中有多个和除法,那么它会评估它遇到的第一个。你可以用括号覆盖它。
If you have Multiple and Divide in the same equation then it evaluates the first one it encounters. you can override this by using parentheses.
这篇关于如何在Javascript中进行乘法除法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!