Answer the question
In order to leave comments, you need to log in
How to add map method to TypedArray in browsers other than Mozilla 38+?
Code example:
"use strict";
var arrayOfInitialPositions = ;
var lambdaDistance = [0.005, 1.005, 2.005];
for (var i = 0, len = arrayOfInitialPositions.length-1; i < len-1; i++)
{
arrayOfInitialPositions[i].map(function(item,j,array){ return (arrayOfInitialPositions[i+1][j] * lambdaDistance[i]) });
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question