1. 程式人生 > >常見的數學方法

常見的數學方法

pow(x parse 之間 -1 math rand 向上取整 num mat

1、怎麽讓數字保留n位小數? 數字.toFixed(n); var num = 123.567; num.toFixed(2); 2、將字符串轉化為數字的方法有哪些? 數學方法有哪些?(Math) var str = ‘123.45‘; parseInt(str); parseFloat(str); Number(str); 3. 隨機數:Math.random() 0-1之間;求10到20之間的隨機數隨機數即:10+Math.random()*20 4. 向上取整: Math.ceil();   Math.ceil(4.2)=》5 向下取整: Math.floor();   Math.floor(4.2)=》4 Math.floor(4.9)=》4 四舍五入: Math.round();   Math.round(4.8)=》5 次方函數: Math.pow(x,y); x的y次方  Math.pow(5,2) =》五的2次方

常見的數學方法