I want to convert a string to double then store it into array of type double at the last, I did the following:
var num = "";
var sym = new Float64Array();
sym[sym.length] = parseFloat(num);
but when I prints the array I get undefined , so where is the wrong I did ?