js math对象

Math对象
执行常见的算数任务
常用方法
round()四舍五入
random()返回0~1之间的随机数
max():返回最高值
min():返回中的最低值
abs():返回绝对值
-->

<script>
// document.write(Math.round(2.3));

document.write(Math.random()*10);
document.write(parseInt(Math.random()*10));//int 类型
document.write(Math.max("23","43","53","3"));
document.write(Math.abs("-23"));
</script>

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。