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 5f8daa0 commit c90b109Copy full SHA for c90b109
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