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 ee492a7 commit d928487Copy full SHA for d928487
README.md
@@ -2073,17 +2073,17 @@ Other Style Guides
2073
```javascript
2074
// bad
2075
function foo() {
2076
- ∙∙∙∙const name;
+ ∙∙∙∙let name;
2077
}
2078
2079
2080
function bar() {
2081
- ∙const name;
+ ∙let name;
2082
2083
2084
// good
2085
function baz() {
2086
- ∙∙const name;
+ ∙∙let name;
2087
2088
```
2089
0 commit comments