C++ 로 알고리즘을 처음 배워서 for문으로 구하는 방식만 알고 있었는데
아니 이게 웬 걸 우리 JS에겐 Math 라이브러리가 있었다.
4ms 시간이 단축됐다.
Math.min(value1, value2, ...)
+
최댓값 Math.max()
소수점 내림 Math.floor()
소수점 반올림 Math.round()
소수점 올림 Math.ceil()
제곱값 Math.pow()
제곱근 Math.sqrt()
랜덤 Math.random()
절대값 Math.abs()
부호 Math.sign()
'A-HA💡 > JS' 카테고리의 다른 글
[JS] sort(), toSorted() (0) | 2024.01.31 |
---|---|
[JS] Data Type (const array, object 수정 가능한 이유) (0) | 2024.01.10 |
[JS] console 객체 (log, dir, ..) (0) | 2023.12.27 |
[JS] 배열에 요소 추가하는 방법⭐️⭐️ (0) | 2023.12.27 |
[JS] 배열에서 특정 값 찾는 방법 ⭐️ (0) | 2023.12.22 |