Math.floor()
const solution = (num1, num2) => Math.floor(num1 / num2 * 1000)
Math.trunc()
const solution = (num1, num2) => Math.trunc(num1 / num2 * 1000)