Math的计算方法+随机数的封装函数

9 篇文章 0 订阅
1 篇文章 0 订阅

Math.max And min

		// max取数组中的最大值
		var max = Math.max(11, 99, 9);
		// min取数组中的最小值
		var min = Math.min(1, 0, 9);
		console.log("最大值---------" + max + "最小值--------" + min)

Math.ceil

	// ceil方法是向上取整、以下为示例
		console.log("ceil-----"+Math.ceil(22.9))
		console.log("ceil-----"+Math.ceil(22.1))
		console.log("ceil-----"+Math.ceil(22.5))

Math.floor

		// floor向下取整
		console.log("floor-----"+Math.floor(22.9))
		console.log("floor-----"+Math.floor(22.5))
		console.log("floor-----"+Math.floor(22.1))

Math.round

		// round 标准取整(四舍五入法)
		console.log("round-----"+Math.round(22.9))
		console.log("round-----"+Math.round(22.5))
		console.log("round-----"+Math.round(22.1))

Math.random

	// random 随机抽取0~1之间的数(大于等于0小于1)
		console.log("random-----"+ Math.random())

		// 例子:取1~10的随机数(不含小数)
		console.log("random-----"+ Math.floor(Math.random() * 10 + 1)) // 用Math.footer防止取到小数点

随机数的封装函数

		// 随机封装函数upperValue~lowerValue
		function RandomS(lowerValue, upperValue) {
			const choices = upperValue-lowerValue + 1
			return Math.floor(Math.random() * choices + lowerValue)
		}
		var nw = RandomS(100, 10)
		console.log("new-----)" + nw)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值