JavaScript DataView.getFloat64() Method Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report The dataView.getFloat64() is an inbuilt function in dataView which is used to get a 64-bit float at the specified location i.e, at byte offset from the start of the dataview. The range of 64-bit floating-point number is form -1.7E+308 to +1.7E+308 Syntax: dataView.getFloat64(byteOffset) Parameters: It has parameter byteOffset which is offset in a byte and it says from the start of the view were to read the data. Return value: It returns 64-bit signed float number. Below are examples of the DataView.getFloat64() Method. Example 1: When a positive float number passed as a parameter javascript var buffer = new ArrayBuffer(20); var dataview1 = new DataView(buffer, 0, 10); dataview1.setFloat64(1, 12.01); console.log(dataview1.getFloat64(1) + "<br>"); Output: 12.01 Example 2: javascript // Creating buffer with size in byte var buffer = new ArrayBuffer(20); // Creating a view var dataview1 = new DataView(buffer, 0, 10); // put the data 56.34 at slot 1 dataview1.setFloat64(1, 56.34); console.log(dataview1.getFloat64(1)); Output: 56.34 Example 3: Not only float value but also a math function like Math.PI can be taken as the parameter of the function. javascript // Creating buffer with size in byte var buffer = new ArrayBuffer(20); // Creating a view with slot from o to 10 var dataview1 = new DataView(buffer, 0, 10); // put the value of PI at slot 1 dataview1.setFloat64(1, Math.PI); console.log(dataview1.getFloat64(1)); Output: 3.1415927410125732 Example 4: When nothing as data is used to store then it returns NaN i.e, not a number. javascript // Creating buffer with size in byte var buffer = new ArrayBuffer(20); // Creating a view var dataview1 = new DataView(buffer, 0, 10); // putting no data at slot 1 dataview1.setFloat64(1); console.log(dataview1.getFloat64(1)); Output: NaN We have a complete list of Javascript Date Objects, to check those please go through this JavaScript dataView Complete Reference article. Supported Browsers: Google Chrome 9 and aboveEdge 12 and aboveFirefox 15 and aboveInternet Explorer 10 and aboveOpera 12.1 and aboveSafari 5.1 and above We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through Javascript Cheat Sheet-A Basic guide to JavaScript. Comment More infoAdvertise with us Next Article JavaScript dataView.getInt16() Method S ShivamKD Follow Improve Article Tags : JavaScript Web Technologies javascript-dataView JavaScript-Methods Similar Reads JavaScript DataView.getFloat32() Method The dataView.getFloat32() is an inbuilt function in dataView that is used to get a 32-bit float at the specified location i.e, at byte offset from the start of the data view. The range of 32-bit floating-point numbers is from -3.4E+38 to +3.4E+38 Syntax: dataView.getFloat32(byteOffset) Parameters: I 2 min read JavaScript DataView.getFloat32() Method The dataView.getFloat32() is an inbuilt function in dataView that is used to get a 32-bit float at the specified location i.e, at byte offset from the start of the data view. The range of 32-bit floating-point numbers is from -3.4E+38 to +3.4E+38 Syntax: dataView.getFloat32(byteOffset) Parameters: I 2 min read JavaScript dataView.getInt16() Method The Javascript dataView.getInt16() is an inbuilt function in dataView that is used to get a 16-bit integer at the specified location i.e, at byte offset from the start of the dataView. The range of 16-bit integer values is from 0 and 65,535 for unsigned and from ?32,768 to 32,767 for signed integer 2 min read JavaScript dataView.getInt16() Method The Javascript dataView.getInt16() is an inbuilt function in dataView that is used to get a 16-bit integer at the specified location i.e, at byte offset from the start of the dataView. The range of 16-bit integer values is from 0 and 65,535 for unsigned and from ?32,768 to 32,767 for signed integer 2 min read JavaScript dataView.getBigInt64() method This getBigInt64() method is used to get a signed 64-bit integer (long long) at the particular byte offset from the start of the DataView. Syntax: dataview.getBigInt64(byteOffset, value, littleEndian) Parameters: byteOffset: This parameter specifies the offset, in bytes, from the start of the view t 2 min read JavaScript dataView.getUint16() Method The dataView.getUint16() is an inbuilt function in dataView that is used to get an unsigned 16-bit integer at the specified location i.e, at byte offset from the start of the dataView. Syntax: dataView.getUint16(byteOffset) Parameters: It has the parameter byteOffset which is offset in a byte and it 2 min read Like