프로그래머스 코딩 기초 트레이닝 문제를 풀다가 본 Math.trunc()
Math.trunc() 함수는 주어진 값의 소수부분을 제거하고 숫자의 정수부분을 반환합니다.
console.log(Math.trunc(13.37));
// Expected output: 13
console.log(Math.trunc(42.84));
// Expected output: 42
console.log(Math.trunc(0.123));
// Expected output: 0
console.log(Math.trunc(-0.123));
// Expected output: -0
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/trunc
반응형
'자바스크립트 > 기초' 카테고리의 다른 글
배열 순서 바꾸기 (0) | 2023.06.29 |
---|---|
String.prototype.startsWith() && String.prototype.endsWith() (0) | 2023.06.28 |
번들링과 웹팩 (0) | 2021.11.30 |
Callback / Promise / async await (0) | 2021.07.30 |
비동기 (0) | 2021.07.30 |