We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87570fe commit 00eac32Copy full SHA for 00eac32
advanced/bigquery.gs
@@ -62,7 +62,7 @@ function runQuery() {
62
sheet.appendRow(headers);
63
64
// Append the results.
65
- var data = new Array(rows.length);
+ const data = new Array(rows.length);
66
for (let i = 0; i < rows.length; i++) {
67
const cols = rows[i].f;
68
data[i] = new Array(cols.length);
0 commit comments