javascript 사전

floor

요약(Summary)

소수점을 가장 가까운 정수로 내림한 값을 리턴

문법(Syntax)

Math.floor(x)

인자(Parameters)

인자명 데이터형 필수/옵션 설명
x number 필수 내림할 수

반환값(Return)

number, 정수

예제(Example)

alert(Math.floor(5.1)); // number, 5
alert(Math.floor(5.9)); // number, 5
alert(Math.floor(5)); // number, 5
alert(Math.floor(-5.1)); // number, -6
alert(Math.floor(-5.9)); // number, -6

댓글

댓글 본문
graphittie 자세히 보기