목차
Math.fround() 예제 - 최근접 32비트 단정밀도 부동소수 반환
Math.fround() 정의
Math.fround() 구문
Math.fround() 예제 - 최근접 32비트 단정밀도 부동소수 반환
<p id="demo"></p>
<script>
let a = Math.fround(1.23); // 1.2300000190734863
let b = Math.fround(2.34); // 2.3399999141693115
let c = Math.fround(3.45); // 3.450000047683716
let d = Math.fround(-1.23); // -1.2300000190734863
let e = Math.fround(-2.34); // -2.3399999141693115
let f = Math.fround(-3.45); // -3.450000047683716
document.getElementById("demo").innerHTML =
a + "<br>" + b + "<br>" + c + "<br>" + d + "<br>" + e + "<br>" + f;
</script>
결과보기
Math.fround() 정의
지정 숫자의 가장 가까운 32비트 단정밀도 부동 소수점 표현 반환.
1. cf.
2.
ECMAScript6(ES6: JavaScript 2015)
IE 제외한 주요 최신 브라우저 모두 지원.
3. MDN Math.fround() 예제보기
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/fround
Math.fround() 구문
Math.fround(x )
[매개변수]
x
필수. 숫자.
[반환값]
숫자의 최근접 32비트 단정밀도 부동 소수 반환.
주소 복사
랜덤 이동