スプレッドシートを作りたい(create

1const book = SpreadsheetApp.create("スプレッドシート名");
2const book = SpreadsheetApp.create("スプレッドシート名", 行数, 列数);
3
4const id = book.getId();
5const name = book.getName();
6const url = book.getUrl();
7const nrows = book.getLastRow();
8const ncols = book.getLastColumn();

SpreadsheetApp.createメソッドでスプレッドシートを新規作成できます。