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 dd7e665 commit 5f8daa0Copy full SHA for 5f8daa0
README.md
@@ -125,7 +125,7 @@ saveCityZipCode(
125
```javascript
126
const address = "One Infinite Loop, Cupertino 95014";
127
const cityZipCodeRegex = /^[^,\\]+[,\\\s]+(.+?)\s*(\d{5})?$/;
128
-const [, city, zipCode] = address.match(cityZipCodeRegex) || [];
+const [city, zipCode] = address.match(cityZipCodeRegex) || [];
129
saveCityZipCode(city, zipCode);
130
```
131
0 commit comments