JavaScript imprime todos los elementos en la matriz

var a = ["a", "b", "c"];
a.forEach(function(entry) {
  console.log(entry);
});
Odd Octopus