Hudson, Rick (2013-04-04T19:06:40.000Z)
github at esdiscuss.org (2013-07-12T02:27:00.481Z)
In this case it is the same as with a normal array. ```js function dotProduct(v1, v2) { return v1.map(function (e, i) {return e*v2[i];}).reduce(function (a, b) {return a+b;}); } ```