如何在 javascript 中乘以负数?

How do you multiply negative numbers in javascript?

这听起来可能很愚蠢,但如果你想做类似 8*-5(八乘负五)的事情,你就做不到。

按照操作顺序,您可以这样做:8*(-5)。但在 javascript(以及大多数其他语言)中,括号是条件符号。

请帮忙。

您可以在 javascript 中使用这两种代码。

8*-5 == -40
8*(-5) == -40

由于乘法符号的优先级高于减法符号,因此它将在普通数学中相乘,在 JavaScript 中也是如此。

if you are trying to do something like 8*-5 (eight times negative five), you can't exactly.

当然可以。打开 JavaScript 控制台并输入 8*-5。你得到 -40.

In order of operations, you could do something like this: 8*(-5). But in javascript (and in most other languages), parentheses are the condition symbol.

不确定是什么让您产生了这个想法,但是括号可以很好地用于数学运算和设置运算顺序。再次打开您的 JavaScript 控制台,键入 8*(-5),您将看到 -40.