adds a new sheet into a SpreadSheet
| content |
// get content of an active sheet
var content = $$("ssheet").serialize();
// copy to a new sheet named "My sheet"
$$("ssheet").addSheet(content, "My sheet");
If you don't provide any arguments, SpreadSheet will create a visible empty sheet with an automatically generated name.