This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

DataView.prototype.getFloat32()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015년 7월⁩.

DataView 인스턴스의 getFloat32() 메서드는 이 DataView의 지정된 바이트 오프셋에서 4바이트를 읽고 이를 32비트 부동소수점 숫자로 해석합니다. 정렬 제약 조건은 없으며, 범위 내의 모든 오프셋에서 멀티바이트 값을 가져올 수 있습니다.

시도해 보기

// Create an ArrayBuffer with a size in bytes
const buffer = new ArrayBuffer(16);

const view = new DataView(buffer);
view.setFloat32(1, Math.PI);

console.log(view.getFloat32(1));
// Expected output: 3.1415927410125732

구문

js
getFloat32(byteOffset)
getFloat32(byteOffset, littleEndian)

매개 변수

byteOffset

데이터를 읽을 뷰의 시작 부분으로부터의 오프셋(바이트 단위)입니다.

littleEndian Optional

리틀 엔디언 혹은 빅 엔디언 형식으로 저장되는지 여부를 나타냅니다. 만약 false 혹은 undefined라면 빅 엔디언 값을 읽습니다.

반환 값

-3.4e38부터 3.4e38까지의 실수 값.

예외

RangeError

데이터 뷰의 끝을 넘어서 읽을 수 있는 byteOffset이 설정된 경우 발생합니다.

예제

getFloat32() 사용하기

js
const { buffer } = new Uint8Array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);
const dataview = new DataView(buffer);
console.log(dataview.getFloat32(1)); // 2.387939260590663e-38

명세서

Specification
ECMAScript® 2026 Language Specification
# sec-dataview.prototype.getfloat32

브라우저 호환성

같이 보기