首页 > 代码库 > JavaScript中Math--random()/floor()/round()/ceil()
JavaScript中Math--random()/floor()/round()/ceil()
Math.random():返回0-1之间的任意数,不包括0和1;
Math.floor(num):返回小于等于num的整数,相当于四舍五入的四舍,不五入;例子:Math.floor(1.0);Math.floor(1.5);Math.floor(1.9);都返回1;
Math.round(num):num进行四舍五入;例子:Math.round(1.0);Math.round(1.4);返回1;/Math.round(1.5);Math.round(1.9);返回2;
Math.ceil(num):返回大于等于num的最小整数;Math.ceil(1.0);返回1;/Math.ceil(1.1);Math.ceil(1.5);Math.ceil(1.9);返回2;
JavaScript中Math--random()/floor()/round()/ceil()
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。