Node.js examples for Data Type:Float64Array
Applies function to every element in Float64Array
/* Applies function to every element */ Float64Array.prototype.each = function(func){ for(var i=0; i < this.length; i++){ func.call(this, i);/*from ww w . j a v a2 s . c om*/ } }