外觀
禁止使用近似常數,而是偏好使用 Math 物件中的常數。
Math
近似常數不如 Math 物件中的常數精確。
此規則的不正確程式碼範例
let log10e = 0.434294;
此規則的正確程式碼範例
let log10e = Math.LOG10E;