Math.PI;获取π的值
Math.max(1,2,3,4);
Math(min(1,2,3,4);
Math.round(2.5); //四舍五入
Math.ceil(1.1); //向上舍入
Math.floor(2.9); //向下舍入
Math.random(); //获取0~1之间的随机数,不包括 0和1,可以直接将其加减乘除参与运算也可以作为变量直接作用于Math.floor和Math.ceil;
时间: 2024-10-13 23:32:03
Math.PI;获取π的值
Math.max(1,2,3,4);
Math(min(1,2,3,4);
Math.round(2.5); //四舍五入
Math.ceil(1.1); //向上舍入
Math.floor(2.9); //向下舍入
Math.random(); //获取0~1之间的随机数,不包括 0和1,可以直接将其加减乘除参与运算也可以作为变量直接作用于Math.floor和Math.ceil;