【JS】【基础】Math相关API

2021-08-26  本文已影响0人  今夜相思又几许

1. Math.abs(target)

2. Math.ceil(target)

3. Math.floor(target)

4. Math.random()

取[10, 20)之间的随机数

function random(min, max) {
  min = Math.ceil(min)
  max = Math.floor(max)
  return Math.floor(Math.random() * (max - min)) + min
}

取[10, 20]之间的随机数

function random(min, max) {
  min = Math.ceil(min)
  max = Math.floor(max)
  return Math.floor(Math.random() * (max - min) + 1) + min
}

5. Math.round(target)

要求:保留小数点后 n 位

function round(target, number) {
  return Math.round(`${target}e${number}`) / Math.pow(10, number)
}

6. Math.min()

{
  console.log(Math.min()) // Infinity
  console.log(Math.min(1)) // 1
  console.log(Math.min(1, 2)) // 1
  console.log(Math.min(undefined)) // NaN
  console.log(Math.min(true, false)) // 0
  console.log(Math.min(1, '123')) // 123
  console.log(Math.min(1, '123abc')) // NaN
  console.log(Math.min(...[1, 2, 3, 4, 5, 6])) // 1
}

7. Math.max()

8. Math.PI

9. Math.pow(base: number, exponent:number)

上一篇下一篇

猜你喜欢

热点阅读