How to debug the code in js

clipboard.png
track the values of asTs and asEncryptedTs parameters

General breakpoint setting is more appropriate

Please give me some advice on how to debug.

Sep.01,2021

add a new line where you start debugging: debugger and then F10, after which the code will be executed step by step, F12 open the debugging tool, and hover over the executed code to view it.


make a breakpoint in the return line, then select encodeURIComponent (r) or click console on the console to see

Menu