外观
禁止近似常量的使用,代之以 Math 对象中的常量。
Math
近似常量不如 Math 对象中的常量准确。
此规则的**不正确**代码示例
let log10e = 0.434294;
此规则的**正确**代码示例
let log10e = Math.LOG10E;