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.
1 parent bc1ae6a commit 071dfdcCopy full SHA for 071dfdc
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