Two Questions about debugging in chrome console :
- How can I debug function that I am writing directly in the chrome console on the fly ? for example
function say(){ console.log("hello"); console.log("test"); }
I want to set breakpoints,etc..
And how can I do a tab in a console for indention?
Thank you.