简单类型 / 数字 / 数学运算

let minValue = Math.min(213);
//minValue is 1

let maxValue = Math.max(213);
//maxValue is 3

console.log(`minValue is ${minValue}`);
console.log(`maxValue is ${maxValue}`);