JS Math对象

2022/6/4 23:22:51

本文主要是介绍JS Math对象,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script>
        console.log(Math.abs(-100)) // 100 #绝对值
        console.log(Math.ceil(3.14)) //4 #向上取整
        console.log(Math.floor(3.94)) //3 #向下取整
        console.log(Math.round(3.94)) //4 #四舍五入
        console.log(Math.round(3.14)) //3 #四舍五入

        // 0-100随机浮点数
        console.log(Math.round(Math.random()*100))



    </script>
</head>
<body>
<h1>welcome to JS!</h1>
</body>
</html>

 



这篇关于JS Math对象的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程