Google Apps Script is a programming language created in 2009.
#1093on PLDB | 15Years Old |
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...
function helloWorld() {
Logger.log("Hello World");
}
function doGet() {
var app = UiApp.createApplication();
app.add(app.createHTML("<b>Hello World!</b>"));
return app;
}
Feature | Supported | Example | Token |
---|---|---|---|
Strings | ✓ | "Hello world" | " |
Print() Debugging | ✓ | Logger.log |