sum array without loop javascript

JavaScript
var myArray = [1,2,3,4,5];

var total = eval(myArray.join("+"));
Source

Also in JavaScript: