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 887c779 commit 7761d24Copy full SHA for 7761d24
README.md
@@ -102,8 +102,7 @@ setTimeout(() => {
102
**Bad:**
103
```javascript
104
const address = 'One Infinite Loop, Cupertino 95014';
105
-const city
106
-Regex = /^[^,\\]+[,\\\s]+(.+?)\s*(\d{5})?$/;
+const cityStateRegex = /^[^,\\]+[,\\\s]+(.+?)\s*(\d{5})?$/;
107
saveCityState(address.match(cityStateRegex)[1], address.match(cityStateRegex)[2]);
108
```
109
0 commit comments