Hi,
You can output values and messages to the console by using console.log() statements in your code. It can assist you in understanding what is occurring in your script, despite not being as sophisticated as a full debugging environment.
Or, To detect and address potential script errors, use try-catch blocks. This won't give you access to a debugging environment, but it can show you where an error is happening.
Best Regards.