Reputation: 249
How to get elaborated information about javascript errors in Google Apps Script editor itself, BEFORE executing the script
This is NOT a question about a specific code, but about GAS editor's behavior/functionallity
When writing a line of code in GAS, the editor clearly recognizes the problems and underlines the relevant places in red zigzagged underline / 3 grey dots.
console.log
/ trycatch
/ the Executions tab?Same example, now in VSC:
Upvotes: 1
Views: 123
Reputation: 2004
You can check the errors before running the script by using Windows key + F8
/ option + F8
that will trigger the Go to next problem
.
You can also file a Feature Request or an Issue on Google's issue tracker.
This is the template for the Feature Request:
Upvotes: 2