Course Content
Introduction to JavaScript
Challenge: Define the Variable
Task
- Define a variable named
myVar
. - Assign the literal
15
to the variablemyVar
. - Print the variable
myVar
to the console.
Hint
1. Use the
2. Insert variable name in the
let
keyword. 2. Insert variable name in the
console.log()
function.
Section 2.
Chapter 3