Reputation: 11478
I am creating a Google app for Google Docs Spreadsheet for my office. I can find the tutorials for the Spreadsheet and UI elements but there is no one-package resource that describes the data-types and control structures that google-docs scripts uses. My background is python so I am expecting list and other relevant data types python uses in google-docs. Can somebody suggest me a place or a link where I can find all the related information about google-docs script data-types and control structure?
Upvotes: 1
Views: 4217
Reputation: 1809
Apps Script uses JavaScript, so for data types and control structure, you can look at any JavaScript reference. MDN is one example.
For Apps Script specific classes and methods, you can see the API reference docs, here.
Upvotes: 7