DataView.prototype.getFloat64()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

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

시도해보기

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

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

console.log(view.getFloat64(1));
// Expected output: 3.141592653589793

구문

js
getFloat64(byteOffset)
getFloat64(byteOffset, littleEndian)

매개 변수

byteOffset

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

littleEndian Optional

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

반환 값

숫자 값.

예외

RangeError

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

예제

getFloat64() 사용하기

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

명세서

Specification
ECMAScript® 2025 Language Specification
# sec-dataview.prototype.getfloat64

브라우저 호환성

Report problems with this compatibility data on GitHub
desktopmobileserver
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
Deno
Node.js
getFloat64

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

같이 보기