JavaScript dataView.setFloat32() Method Last Updated : 02 Jan, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report The dataView.setFloat32() is an inbuilt function in dataView that is used to store a signed 32-bit float value at the specified location i.e, at byte offset from the start of the dataView. Syntax: dataView.setFloat32(byteOffset) Parameters: It has the parameter byteOffset which is offset in a byte and it says from the start of the view where to read the data. Return value: This function does not return anything. Below are examples of the dataView.setFloat32() Method. Example 1: javascript var buffer = new ArrayBuffer(20); var dataview1 = new DataView(buffer, 0, 10); dataview1.setFloat32(1, 12.22); console.log(dataview1.getFloat32(1)); Output: 12.220000267028809 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.24 at slot 1 dataview1.setFloat32(1, 56.24); console.log(dataview1.getFloat32(1)); Output: 56.2400016784668 Example 3: The below code sets the value of PI as Math.PI and gives the output as the value of PI. 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.setFloat32(1, Math.PI); document.write(dataview1.getFloat32(1)); Output: 3.1415927410125732 Code #3: When nothing as data is used to store then it gives the output as 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.setFloat32(1); console.log(dataview1.getFloat32(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.setFloat32() Method S ShivamKD Follow Improve Article Tags : JavaScript Web Technologies javascript-dataView JavaScript-Methods Similar Reads JavaScript dataView.setFloat64() Method The dataView.setFloat64() is an inbuilt function in dataView that is used to store a signed 64-bit float value at the specified location i.e, at byte offset from the start of the dataView. Syntax: dataView.setFloat64(byteOffset) Parameters: It has the parameter byteOffset which is offset in byte i.e 2 min read JavaScript dataView.setInt32() Method The dataView.setInt32() is an inbuilt function in dataView that is used to store a signed 32-bit integer at the specified location i.e, at byte offset from the start of the dataView. Syntax: dataView.setInt32(byteOffset) Parameters: It has the parameter byteOffset which is offset in a byte and it sa 2 min read JavaScript dataView.setUint32() Method The dataView.setUint32() is an inbuilt function in dataView which is used to store an unsigned 32-bit integer at the specified location i.e, at byte offset from the start of the dataView. Syntax: dataView.setUint32(byteOffset,ValueToStoreAsUint32) Parameters: byteOffset is the offset from the start 2 min read JavaScript dataView.setInt8() Method The dataView.setInt8() is an inbuilt function in dataView that is used to store a signed 8-bit integer at the specified location i.e, at byte offset from the start of the dataView. Syntax: dataView.setInt8(byteOffset) Parameters: It has the parameter byteOffset which is offset in byte i.e from the s 2 min read JavaScript dataView.setUint8() Method The dataView.setUint8() is an inbuilt function in dataView that is used to store an unsigned 8-bit integer at the specified location i.e, at byte offset from the start of the dataView. Syntax: dataView.setUint8(byteOffset) Parameters: It has the parameter byteOffset which is offset in a byte and it 2 min read Like