Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

convert Float64Array to array in js

const floatArray = new Float64Array(4);
floatArray[3] = 3.0;
var normalArray = Array.from(floatArray); // this here
console.log(normalArray);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #convert #array #js
ADD COMMENT
Topic
Name
7+6 =