Foundations
Name a Fixed Value
Name a Fixed Value
Use const when a value should keep the same meaning for the rest of the program, especially a named label that should not be reassigned.
Your task: Create a variable called courseName for the text "JavaScript Foundations", then log it.
Tests
- courseName stores the course title
- courseName is stored as text
- the course title is logged
- courseName is declared with const