一元减(-)

一元减-)运算符在其操作数之前,并对其取反。

尝试一下

语法

js
-x

示例

数字取反

js
const x = 3;
const y = -x;

// y = -3
// x = 3

非数字取反

一元减运算符可以将非数字转换为数字

js
const x = "4";
const y = -x;

// y = -4

规范

Specification
ECMAScript Language Specification
# sec-unary-minus-operator

浏览器兼容性

BCD tables only load in the browser

参见