1console.log("Hello, World!");
2
3console.error("Error, World!"); // For errors
4
5console.warn("Warning, World!"); // For warnings
6
7console.clear(); // To clear the console
1//how to print hello world in html using javascript
2document.write("Hello World");