fix: misspelling of 'between' on line 11 (#46687)

This fixes a misspelling on line 11.
pull/46689/head
DanielRosa74 2022-06-27 16:35:58 -03:00 committed by GitHub
parent dd858ca8e9
commit 08114a2aba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ dashedName: compare-scopes-of-the-var-and-let-keywords
# --description-- # --description--
If you are unfamiliar with `let`, check out <a href="/learn/javascript-algorithms-and-data-structures/basic-javascript/explore-differences-between-the-var-and-let-keywords" target="_blank" rel="noopener noreferrer nofollow">this challenge about the difference bewteen <code>let</code> and <code>var</code></a>. If you are unfamiliar with `let`, check out <a href="/learn/javascript-algorithms-and-data-structures/basic-javascript/explore-differences-between-the-var-and-let-keywords" target="_blank" rel="noopener noreferrer nofollow">this challenge about the difference between <code>let</code> and <code>var</code></a>.
When you declare a variable with the `var` keyword, it is declared globally, or locally if declared inside a function. When you declare a variable with the `var` keyword, it is declared globally, or locally if declared inside a function.