- 위와 같은 문제(프로그래머스 - 두 수의 나눗셈)에서
Math.floor()
를 사용하여 답을 아래와 같이 작성하였다.
const solution = (num1, num2) => Math.floor(num1 / num2 * 1000)
Math.floor()
대신 Math.trunc()
메서드를 사용하여 다음과 같이 답을 작성할 수도 있다.
const solution = (num1, num2) => Math.trunc(num1 / num2 * 1000)