# prefer-exponentiation-operator

禁止使用 Math.pow 支持 ** 运算符

一些该规则报告的问题可以通过 --fix 命令行选项 自动修复

在 ES2016 中引入的中缀求幂运算符 ** 是标准 Math.pow 函数的替代方案。

中缀表示法被认为更具可读性,因此比函数表示法更可取。

# 规则详情

此规则不允许调用 Math.pow,并建议改用 ** 运算符。

此规则的错误代码示例:

/*eslint prefer-exponentiation-operator: "error"*/

const foo = Math.pow(2, 8);

const bar = Math.pow(a, b);

let baz = Math.pow(a + b, c + d);

let quux = Math.pow(-1, n);

此规则的正确代码示例:

/*eslint prefer-exponentiation-operator: "error"*/

const foo = 2 ** 8;

const bar = a ** b;

let baz = (a + b) ** (c + d);

let quux = (-1) ** n;

# 何时不使用

除非您的代码库支持 ES2016,否则不应使用此规则。

Last Updated: 5/13/2023, 8:55:38 PM