Forum Discussion
WilliamRyan-dba
2 months agoCommunity Member
Step through JavaScript
Hi All, I'm new to JavaScript, but have extensive experience with VBA. In Preview mode, is it possible to step through JavaScript code? How to do it? I hope this is not too stupid a question... Than...
PhilMayor
2 months agoSuper Hero
Get used to using the console to look for errors.
One common way to debug is to use console.log() to inspect values at specific points or add in alerts.
Also it maybe better to use break points for event listeners. In the sources section you can step through each function.