Skip to content

Instantly share code, notes, and snippets.

@DimuDesigns
Last active January 16, 2019 12:48
Show Gist options
  • Save DimuDesigns/3086f47b15232967eb2a1834260bd1d0 to your computer and use it in GitHub Desktop.
Save DimuDesigns/3086f47b15232967eb2a1834260bd1d0 to your computer and use it in GitHub Desktop.
Destruct Test
function testDestruct() {
var [a, b, cols] = [["up", "down"], ["left", "right"], ["north", "south"], ["east","west"]];
Logger.log(a);
Logger.log(b);
Logger.log(cols);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment