Math.floor()

차노·2023년 8월 14일
0

JS

목록 보기
42/96

In JavaScript, the 'Math.floor()' function is used to round a given number down to the nearest integer that is less than or equal to the original number.

자바스크립트에서, 'Math.floor()' 함수는 기존의 수에서 적거나 같은 가장 가까운 정수로 내림하여 반올림하는 데 사용된다.

This function is commonly used when you want to truncate the decimal portion of a number and get the largest integer that is not greater than the original number.

이 함수는 주로 decimal portion을 잘라내고 기존의 숫자보다 더 크지 않는 정수를 반환하는 데 사용한다.

The 'Math.floor()' function takes a single argument, which is the number you want to round down.

'Math.floor() 함수는 내림하는 수의 단일 인자를 받는다.

소수점에 상관없이 무조건 truncate해서 정수만 남긴다.

It can represent the integer to truncate the floating point wihtout the number's float what it is._

So, this function shows integer constantly.

반올림하고 싶으면, 'Math.round()'함수를 사용하고, 무조건 올림하고 싶으면 'Math.ceil()' 함수를 사용해라

This script was brought back by chat Gpt.

0개의 댓글