※ 常用number型態的運算方法:
- 加、減、乘、除
- 求餘數(mod):%
※ JavaScript 內建的 Math 物件提供了許多number相關的方法和常數。以下是一些常見的內建 Math 功能:
- Math.PI:算出圓的面積。
- Math.ceil:無條件進位
- Math.floor:無條件捨棄
- Math.round:四捨五入
- Math.abs:絕對值
- Math.max:最大值和 Math.min:最小值
- Math.log:對數運算
- Math.pow:指數運算
- Math.random:亂數運算
- 數值轉成字串