This is very simple approach. The Advantage is you can get keys as well:
for (var key in array) {
var value = array[key];
console.log(key, value);
}
For ES6:
array.forEach(value => {
console.log(value)
})
For ES6: (If you want value, index and the array itself)
array.forEach((value, index, self) => {
console.log(value, index, self)
})