SOURCE

// 1.绝对值
console.log(Math.abs(1));
console.log(Math.abs(-1));
console.log(Math.abs('-1')); //隐式转换   会把字符串型 -1 转化为数字型
console.log(Math.abs('-1'));

// 2.三个取整的方法
// (1)Mnath.floor()  地板  向下取整  往最小的取值
console.log(Math.floor(1.1));
console.log(Math.floor(1.9));
// (2)Math.ceil() ceil 天花板 向上取整  往最大的取值
console.log(Math.ceil(1.1));
console.log(Math.ceil(1.9));
// (3)Math.round() 四舍五入 5 特殊 往大的取值
console.log(Math.round(1.1));
console.log(Math.round(1.5));
console.log(Math.round(1.9));
console.log(Math.round(-1.1));
console.log(Math.round(-1.9));
console.log(Math.round(-1.5));

// 3. random 返回一个随机小数()
console.log(Math.random());
// Math.floor(Math.random() * (max - min + 1)) +min; 
function getrandom(min, max) {
  return  Math.floor(Math.random() * (max - min + 1)) + min;
}
console.log(getrandom(1,10));
// 4.随机点名
var arr = ['赔钱虎','妲己','亚瑟','夏侯惇','张飞'];
console.log(arr[getrandom(0,arr.length - 1)])
console 命令行工具 X clear

                    
>
console