UK [flɔ:(r)] US [flɔr, flor]
n. 바닥, 바닥; 의회 자리
vt 바닥을 펼치다, 무너뜨리다
지금 바닥 분사: 바닥재 과거 시제: 바닥재 과거 분사: 바닥재
자바스크립트 바닥() 메서드 통사론
기능: 숫자를 내림합니다.
구문: Math.floor(x)
매개변수: x 필수입니다. 모든 숫자 또는 표현식.
반환값: 은 x보다 작거나 같고 x에 가장 가까운 정수입니다.
설명: floor() 메서드는 반내림 계산을 수행하고 함수 매개변수보다 작거나 같은 가장 가까운 정수를 반환합니다.
자바스크립트 바닥() 메서드 예
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script type="text/javascript"> //在不同的数字上使用 floor() 方法 document.write(Math.floor(0.60) + "<br />") document.write(Math.floor(0.40) + "<br />") document.write(Math.floor(5) + "<br />") document.write(Math.floor(5.1) + "<br />") document.write(Math.floor(-5.1) + "<br />") document.write(Math.floor(-5.9)) </script> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요