Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Console Output | Basic Concepts
Introduction to JavaScript
course content

Course Content

Introduction to JavaScript

Introduction to JavaScript

1. Basic Concepts
2. Variables and Data Types
3. Basic Operations
4. Conditional Statements
5. Loops
6. Functions

bookChallenge: 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.

1
console.log("___");
copy

Insert the message "Hello, World!" inside the console.log() method.

1
console.log("Hello, World!");
copy

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 3
some-alt