Skip to content

Commit

Permalink
fixed the problem regarding wrong sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
adityarajshekhawat committed May 11, 2024
1 parent 2b62d75 commit 2043936
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ When a variable is declared with the `let` keyword, you can <dfn>reassign</dfn>
let programmer = "Naomi";
programmer = "CamperChan";
```

Note that when reassigning a variable, you do **not** use the `let` keyword again.
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.


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

Expand Down

0 comments on commit 2043936

Please sign in to comment.