Description
Zip codes are sometimes represented as numbers in the docs. They should instead be represented as strings to prevent users from mistakenly trying to store zips as numbers, which will not work with zip codes such as 00501 (because JavaScript treats numbers with leading zeroes as octal numbers).
You can find a few instances with this command:
egrep -irI "zip.*[0-9]{5}" *
|