Hello World Using Google App Script
Hello world in Google App Script Go to Your Google drive Go to your Google drive Login your Google Drive account ( https://drive.google.com/drive/ ) Click on NEW button Go to More → Click on Google Apps Script apps Google Apps Script link redirect to App Script editor Rename untitled project to meaning full one Here we are using “First App Script Project” Add below code in Coding area. function myFunction() { var msg="Hello World..!"; Logger.log(msg) } Save code (Ctrl+S/⌘+S ) Run functions: Click on Run-- > Run function --> myFunction (Ctrl+R /⌘+R) View Logs: Click on View → Logs (Ctrl+Enter / ⌘+Enter) Script Output: It will show result with timestamp. Now your ready for dive in Google Apps Script coding…! Happy Coding...