Skip to content

Instantly share code, notes, and snippets.

@robozevel
Created February 2, 2014 20:20
Show Gist options
  • Save robozevel/8774296 to your computer and use it in GitHub Desktop.
Save robozevel/8774296 to your computer and use it in GitHub Desktop.
Countries using the Fahrenheit scale: USA, Puerto Rico, Jamaica, Bahamas, Guam, Belize, Virgin Islands (US), Cayman Islands and Palau. (http://en.wikipedia.org/wiki/Fahrenheit)
function isUsingImperialSystem(countryCode) {
return /US|PR|JM|BS|GU|BZ|VI|KY|PW/.test(countryCode);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment