javascript 返回两个数字之间的随机数(含两个随机数)
语言:php,js,ts,python,nginx,lua
function getRndInteger(min, max) {
  return Math.floor(Math.random() * (max - min + 1) ) + min;
}