js中的Math物件操作

2021-07-25 11:15:20 字數 768 閱讀 9627

最近在使用nodejs做個專案,基於express的nodejs操作全都為js,就此機會,把一些基礎的js操作,整理一下

方法(對數值x向上取整)

console.log(math.ceil(0.35)); //1

console.log(math.ceil(10)); //10

console.log(math.ceil(-10.1)); //-10

方法(對數值x向下取整)

console.log(math.floor(0.35)); //0

console.log(math.floor(10)); //10

console.log(math.floor(-10.1)); //-11

方法(將乙個數字進行四捨五入)

console.log(math.round(0.58)); //1

console.log(math.round(-0.58)); //-1

console.log(math.round(-0.32)); //-0

方法(返回0(包含)~1(不包含)之間的乙個隨機數)

console.log(math.floor((math.random()*10)+1)); //返回1到10之間的乙個整數

方法返回兩個給定的數中的較大者

console.log(math.max(10,10.1));

方法返回兩個給定的數中的較小者

console.log(math.min(10,10.1));

JS中的Math物件

值 取絕對值 console.log math.abs 4 4 值 向上取整 console.log math.ceil 2.2 3 值 向下取整 console.log math.floor 2.2 2 值 四捨五入 console.log math.round 2.5 3 值一,值二,值三.取一...

js中Math物件的方法

1.丟棄小數部分,保留整數部分 parseint 5 2 2.向上取整,有小數就整數部分加1 math.ceil 5 2 3,四捨五入.math.round 5 2 4,向下取整 math.floor 5 2 math 物件的方法 ff firefox,n netscape,ie internet ...

js中Math物件和Date物件

math 是數學函式,但又屬於物件資料型別 typeof math object 它是乙個物件 console.dir math 檢視math的所有函式方法。控制台列印的結果如下 1,math.abs 獲取絕對值 math.abs 12 12 2,math.ceil and math.floor 向...