大家好,欢迎来到IT知识分享网。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script>
//1.绝对值方法
console.log(Math.abs(-1));
console.log(Math.abs('-1'));//隐式转换,会把字符串的-1转换成字符型
console.log(Math.abs('刘洋'));//NaN
//2.三个取整方法
//(1)Math.floor() 地板 向下取整 往最小了取值
console.log(Math.floor(1.1));//1
console.log(Math.floor(1.9));//1
// (2)Math.ceil() 天花板 向上取整 王大了取
console.log(Math.ceil(1.1));//2
console.log(Math.ceil(1.9));//2
// (3)Math.round() 四舍五入 其他数字都是四舍五入,但是.5 特殊!!就往大了取!比如-1.5==-1
console.log(Math.round(1.1));
console.log(Math.round(1.5));
console.log(Math.round(-1.5));//-1
console.log(Math.round(-1.2));//-1
</script>
</head>
<body>
</body>
</html>
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/23041.html