Can someone help with syntax on returning any specific column of an array in Google Apps Script / JavaScript.
Array
01 02 03 04 05
06 07 08 09 10
11 12 13 14 15
2nd row of array...
Browser.msgBox(values[1]);
06 07 08 09 10
what's the syntax for returning values of 2nd column?
Are there simpler way without the for loop path, reason being I have a 7k row by 28 column array and trying to mak it more efficient via better call methods.