Thanks to visit codestin.com Credit goes to github.com
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.
2 parents dcbca43 + 071dfdc commit 667ff35Copy full SHA for 667ff35
README.md
@@ -95,7 +95,7 @@ for (var i = 0; i < MINUTES_IN_A_YEAR; i++) {
95
**Bad:**
96
```javascript
97
let cityStateRegex = /^(.+)[,\\s]+(.+?)\s*(\d{5})?$/;
98
-saveCityState(cityStateRegex.match(cityStateRegex)[0], cityStateRegex.match(cityStateRegex)[0]);
+saveCityState(cityStateRegex.match(cityStateRegex)[1], cityStateRegex.match(cityStateRegex)[2]);
99
```
100
101
**Good**:
0 commit comments