Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to print hello world in javascript

// 1. Using console.log()
console.log("Hello World");
// console.log() is used in debugging the code.

// 2. Using alert()
alert("Hello, World!");
// // The alert() method displays an alert box over the current window with the specified message.

// 3. Using document.write()
document.write("Hello, World!");
// // document.write() is used when you want to print the content to the HTML document.

//Answer by Anshul Soni
//Visit my my website - https://anshulsoni.netlify.app/
Source by docs.github.com #
 
PREVIOUS NEXT
Tagged: #print #world #javascript
ADD COMMENT
Topic
Name
3+5 =