JasonWu73/Blog

JavaScript常用算法

JasonWu73 opened this issue · 0 comments

生成随机整数

const randomInt = (min, max) => {
  min = Math.ceil(min);
  max = Math.floor(max);
  return Math.floor(Math.random() * (max - min + 1)) + min;
}

判断值是否为数字

Number.isFinite()

数组方法

JS数组方法截图