Declare a Constant Practice
Fill in the BlankBeginner
Question
Fill in the blank to declare a variable named `pi` that cannot be reassigned.
Code
___ pi = 3.14159;
Hint
The keyword is short for 'constant'.
Explanation
const is the correct keyword for a value that should never change, like pi. Using let would allow reassignment, and var is the legacy keyword. The completed line is: const pi = 3.14159;
Related Resources
Related Lessons
- Variables
Learn how variables work in programming.
Related Cheatsheets
- JavaScript Cheatsheet
Quick reference for JavaScript variable keywords.
Look up unfamiliar terms
A beginner-friendly glossary explains jargon in plain English — variables, functions, DOM, Promise, and more.
Decode error messages
Plain-English explanations of common errors — what they mean, why they happen, and how to fix them.
Build real projects
Apply what you learned by building guided projects with starter code and solutions.