Course Content
Introduction to JavaScript
Introduction to JavaScript
Challenge: Console Output
Task
Inside the provided code block, replace the underscores (___
) with the necessary code to log the Hello, World!
text to the console using the console.log()
method.
console.log("___");
Insert the message "Hello, World!"
inside the console.log()
method.
console.log("Hello, World!");
Thanks for your feedback!