Course Content
Introduction to JavaScript
Introduction to JavaScript
3. Performing Operations in JavaScript
Understanding Assignment OperatorsMathematical Operations in JavaScriptAssignment Operators in JavaScriptIncrement and Decrement OperatorsChallenge: Variable Operations PracticeComparison Operators in JavaScriptLogical Operators ExplainedChallenge: Compare Variables in JavaScriptConcatenating Strings in JavaScriptChallenge: Build Sentences with JavaScript
4. Controlling Program Flow with Conditional Statements
5. Looping Through Data in JavaScript
Challenge: Console Output in JavaScript
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!");
Everything was clear?
Thanks for your feedback!
Section 1. Chapter 3