Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed-wording-for-step-5-of-pyramid-project #54735

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ When a variable is declared with the `let` keyword, you can <dfn>reassign</dfn>
let programmer = "Naomi";
programmer = "CamperChan";
```

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please restore the arabic file to the original condition

Note that when reassigning a variable that has already been declared, you do **not** use the `let` keyword.

After your `console.log`, assign the value `"World"` to your `character` variable.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ let programmer = "Naomi";
programmer = "CamperChan";
```

Note that when reassigning a variable that has already been declared, you do **not** use the `let` keyword.
Note that when reassigning a variable, you do **not** use the `let` keyword again.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change

Keep the empty lines consistent please


After your `console.log`, assign the value `"World"` to your `character` variable.

Expand Down