Best way to iterate over a multidivisional array using forEach JavaScript Google script

What is the best way to iterate a multidivisional array using forEach JavaScript Google script?

I came up with this.

values.forEach(function(row){
  values[0].forEach(function(_,col){
    console.log(row[col])
  });
});

While it works I have a feeling there is a better way to write it