Skip to content

Commit

Permalink
Fix the link texts
Browse files Browse the repository at this point in the history
  • Loading branch information
Chalarangelo committed Sep 18, 2024
1 parent 8087e33 commit 2c05103
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/snippets/js/s/var-let-const.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const scopeExample = () => {
};
```

If you want to learn more, you can read [the previous previous article covering JavaScript variables and scopes in more depth](/js/s/variable-scope).
If you want to learn more, you can read [the article covering JavaScript variables and scopes in more depth](/js/s/variable-scope).

## Hoisting

Expand All @@ -55,7 +55,7 @@ const hoistingExample = () => {
};
```

If you want to learn more, you can read [the previous article covering JavaScript hoisting in more depth](/js/s/variable-hoisting).
If you want to learn more, you can read [the article covering JavaScript hoisting in more depth](/js/s/variable-hoisting).

## Global object property

Expand All @@ -82,4 +82,4 @@ let b = 'let1';
let b = 'let2'; // SyntaxError
```

If you want to learn more, you can read [the previous article covering JavaScript's strict mode in more depth](/js/s/use-strict).
If you want to learn more, you can read [the article covering JavaScript's strict mode in more depth](/js/s/use-strict).

0 comments on commit 2c05103

Please sign in to comment.