Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

Google Apps Script

< >

Google Apps Script is a programming language created in 2009.

#1084on PLDB 15Years Old
Wikipedia

Apps Script is a scripting language for light-weight application development in the G Suite platform. It is based on JavaScript 1.6 with some portions of 1.7 and 1.8 and provides subset of ECMAScript 5 API, however instead of running on the client, it gets executed in the Google Cloud. According to Google, Apps Script "provides easy ways to automate tasks across Google products and third party services." Apps Script is also the tool that powers the add-ons for Google Docs, Sheets and Slides.. Read more on Wikipedia...


Example from hello-world:
function helloWorld() { Logger.log("Hello World"); }
Example from Wikipedia:
function doGet() { var app = UiApp.createApplication(); app.add(app.createHTML("<b>Hello World!</b>")); return app; }

Language features

Feature Supported Example Token
Strings ✓ "Hello world" "
Print() Debugging ✓ Logger.log

- Build the next great programming language · Add · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements

Built with Scroll v144.0.0