Doubt with javascript console.log

Asked

Viewed 97 times

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.

1 answer

3


Just stop printing on the console. The function console.log serves only to print something on the console, does nothing else.

You can find more information about the console here on the website: What is console.log?

Browser other questions tagged

You are not signed in. Login or sign up in order to post.