Skip to content

Instantly share code, notes, and snippets.

@UskeS
Last active May 31, 2018 05:38
Embed
What would you like to do?
Input dialog method in GoogleAppsScript
function prompt (mes){
var string = Browser.inputBox(mes);
return string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment