Insertsheet () al comienzo de las hojas activas de Google Script

var ss = SpreadsheetApp.getActiveSpreadsheet();
ss.insertSheet('My New Sheet', 0);; // .insert(SheetsheetName, atIndex);
Nervous Nightingale