JavaScrip -Math绝对值和三种取值方法案例
【摘要】
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<met...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script>
// 绝对值
console.log('绝对值');
console.log(Math.abs(-1));
console.log(Math.abs(1));
console.log(Math.abs('-1')); //隐式转换
// 向下取整
console.log('向下取整');
console.log(Math.floor(1.1));
console.log(Math.floor(1.7));
// 向上取整
console.log('向上取整');
console.log(Math.ceil(1.1));
console.log(Math.ceil(1.9));
// 四舍五入
console.log('四舍五入');
console.log(Math.round(1.1));
console.log(Math.round(1.6));
console.log(Math.round(1.5));
console.log(Math.round(-1.5));
</script>
</head>
<body>
</body>
</html>
文章来源: blog.csdn.net,作者:花花叔叔,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/qq_52077949/article/details/120028416
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)