1
i have a javascript that performs some actions on a site. I follow through the console to know what is happening, but at various times it executes a command that printa in console.log("check");
I want to make sure that this "check" does not appear on the console, because it repeats all the time and dirty the screen. if I just delete console.log("check") it stops working? or just stops playing on the console?
Thanks in advance.