+ 4
What is the use of printing something in the JS console?
3 Respuestas
+ 11
Hey.
JS Tab of Web project, is good when you want to make a clear code and It's good to keep the content, the style and the scripts away from each other, so your Web document would be easy to read and also write.
JS console : you can use for sending messages (like status of a process) or debugging.. You can send text to JS console with using the console.log('your text'); from JS Tab, or from HTML Tab. 👍😃
+ 2
One of the way to print the information. If you don't want to print the information on website document you use console. It's easy and fast.
+ 2
It's usually used for debugging.