dpes8693 / frontend-mentor-program-1rd

前端培訓
0 stars 1 forks source link

汪宗諺_HW6&Question #49

Closed DarkShadow9321 closed 2 months ago

DarkShadow9321 commented 2 months ago

HW6:https://github.com/DarkShadow9321/ES6-note.git Question:Math函數很常使用到嗎?大部分經常使用哪些部分?

dpes8693 commented 2 months ago
dpes8693 commented 2 months ago

HW6:https://github.com/DarkShadow9321/ES6-note.git Question:Math函數很常使用到嗎?大部分經常使用哪些部分?

算蠻常見的,通常是用在:

Math.round(1.4)
Math.ceil(1.4)
Math.floor(1.4)
Math.random()

以下比較少用: 比大小

const array1 = [1, 3, 2];
console.log(Math.max(...array1));
console.log(Math.min(...array1));