We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 133e907 commit 700a1b7Copy full SHA for 700a1b7
README.md
@@ -739,7 +739,7 @@ console.log(num);
739
740
With the `var` keyword, you can declare multiple variables with the same name. The variable will then hold the latest value.
741
742
-You cannot do this with `let` or `const` since they couldn't be redeclared.
+You cannot do this with `let` or `const` since they're block-scoped and therefore can't be redeclared.
743
744
</p>
745
</details>
0 commit comments