employer cover photo
employer logo
employer logo

Innominds Software

Is this your company?

Innominds Software interview question

prototype based question. add sum method to array

Interview Answer

Anonymous

Dec 2, 2016

Array.prototype.sum = function(){ var total = 0; this.forEach(function(val){ total += val; }); return total; };

15