Returning the total of the combined values in an array.

Returning the total of the combined values in an array.

Hi, if I have an array of numbers,
  1. myArray = new Array(0,3,2,5,9,7);
Is there a quicker way of adding the numbers together to get the combined total instead of using a for/next loop like I am currently doing.

Thanks in advance.