Intro JavaScript์ Math.floor() ๋ฉ์๋์ ๋ํด ์์๋ณด๋๋ก ํ๊ฒ ์ต๋๋ค. Math.floor()? Math.floor() ํจ์๋ ํญ์ ๋ด๋ฆผํ์ฌ ์ฃผ์ด์ง ์ซ์๋ณด๋ค ์๊ฑฐ๋ ๊ฐ์ ๊ฐ์ฅ ํฐ ์ ์๋ฅผ ๋ฐํํฉ๋๋ค. Syntax Math.floor(x) Parameters x : A number ์ซ์ Example Math.floor(-Infinity); // -Infinity Math.floor(-45.95); // -46 Math.floor(-45.05); // -46 Math.floor(-0); // -0 Math.floor(0); // 0 Math.floor(4); // 4 Math.floor(45.05); // 45 Math.floor(45.95); // 45 Math.floor(Infini..