What is the most compact way of adding corresponding elements of multiple arrays of same length ?
var a = [1,2,3];
var b = [5,5,5];
var c = [1,1,1];
resultant array should be [7,8,9]
I can do this with a simple for loop but could it be possible for jquery/lodash solution with minimum lines of code?