js에서 정수를 얻는 방법: 1. "Math.trunc()" 메서드를 사용하여 숫자의 소수 부분을 제거하고 정수 부분을 유지합니다. 2. "Math.round()" 메서드를 사용하여 반환합니다. 숫자의 반올림된 정수 부분 3. "Math.ceil()" 메소드를 통해 상향 반올림 등을 실현합니다.
이 문서의 운영 환경: Windows 7 시스템, JavaScript 버전 1.8.5, Dell G3 컴퓨터.
숫자 반올림을 위한 JavaScript:
1. Math.trunc()
1. 숫자의 소수 부분을 제거하고 정수 부분을 유지하려면
Math.trunc() 메서드를 정의하세요.
2. 구문
Math.trunc(value)
3. 예시
console.log(Math.trunc(2.01)); // 2 console.log(Math.trunc(2.9)); // 2 console.log(Math.trunc('0.22')); // 0 console.log(Math.trunc(-1.22)); // -1 console.log(Math.trunc(-1.56)); // -1 console.log(Math.trunc(true)); // 1 console.log(Math.trunc(undefined)); // NaN
2. Math.round()
1. Definition
Math.round() 메소드는 숫자의 반올림된 정수 부분을 반환합니다.
2. 구문
Math.round(value)
3. 예제
console.log(Math.round(2.01)); // 2 console.log(Math.round(2.9)); // 3 console.log(Math.round('0.22')); // 0 console.log(Math.round(-1.22)); // -1 console.log(Math.round(-1.56)); // -2 console.log(Math.round(true)); // 1 console.log(Math.round(undefined)); // NaN
3. Math.ceil()
1. Definition
Math.ceil() 메서드는 숫자보다 크거나 같은 가장 작은 정수를 반환합니다. , 반올림되었습니다.
2. 구문
Math.ceil(value)
3. 예시
console.log(Math.ceil(2.01)); // 3 console.log(Math.ceil(2.9)); // 3 console.log(Math.ceil('0.22')); // 1 console.log(Math.ceil(-1.22)); // -1 console.log(Math.ceil(-1.56)); // -1 console.log(Math.ceil(true)); // 1 console.log(Math.ceil(undefined)); // NaN
4. Math.floor()
1. Definition
Math.floor() 메소드는 다음과 같거나 작은 정수를 반환합니다. 숫자, 즉 반내림됩니다.
2. 문법
Math.floor(value)
3. 예제
console.log(Math.floor(2.01)); // 2 console.log(Math.floor(2.9)); // 2 console.log(Math.floor('0.22')); // 0 console.log(Math.floor(-1.22)); // -2 console.log(Math.floor(-1.56)); // -2 console.log(Math.floor(true)); // 1 console.log(Math.floor(undefined)); // NaN
[추천 학습: js 기본 튜토리얼]
위 내용은 js에서 정수를 얻는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!