fix(curriculum): updated description of step 1 of pyramid project (#54937)

This commit is contained in:
Vaibhav-Ace
2024-05-23 18:47:03 +09:30
committed by GitHub
parent 6db9dbece4
commit 496d427958
@@ -19,7 +19,7 @@ let hello;
Variable naming follows specific rules: names can include letters, numbers, dollar signs, and underscores, but cannot contain spaces and must not begin with a number.
Declare a `character` variable in your code.
Use the `let` keyword to declare a variable called `character`.
_Note_: It is common practice to end statements in JavaScript with a semicolon. `;`