Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

States option array

I needed it. You might also.

   1  
   2  STATES = [
   3      [ "Alabama", "AL" ],
   4      [ "Alaska", "AK" ],
   5      [ "Arizona", "AZ" ],
   6      [ "Arkansas", "AR" ],
   7      [ "California", "CA" ],
   8      [ "Colorado", "CO" ],
   9      [ "Connecticut", "CT" ],
  10      [ "Delaware", "DE" ],
  11      [ "Florida", "FL" ],
  12      [ "Georgia", "GA" ],
  13      [ "Hawaii", "HI" ],
  14      [ "Idaho", "ID" ],
  15      [ "Illinois", "IL" ],
  16      [ "Indiana", "IN" ],
  17      [ "Iowa", "IA" ],
  18      [ "Kansas", "KS" ],
  19      [ "Kentucky", "KY" ],
  20      [ "Louisiana", "LA" ],
  21      [ "Maine", "ME" ],
  22      [ "Maryland", "MD" ],
  23      [ "Massachusetts", "MA" ],
  24      [ "Michigan", "MI" ],
  25      [ "Minnesota", "MN" ],
  26      [ "Mississippi", "MS" ],
  27      [ "Missouri", "MO" ],
  28      [ "Montana", "MT" ],
  29      [ "Nebraska", "NE" ],
  30      [ "Nevada", "NV" ],
  31      [ "New Hampshire", "NH" ],
  32      [ "New Jersey", "NJ" ],
  33      [ "New Mexico", "NM" ],
  34      [ "New York", "NY" ],
  35      [ "North Carolina", "NC" ],
  36      [ "North Dakota", "ND" ],
  37      [ "Ohio", "OH" ],
  38      [ "Oklahoma", "OK" ],
  39      [ "Oregon", "OR" ],
  40      [ "Pennsylvania", "PA" ],
  41      [ "Rhode Island", "RI" ],
  42      [ "South Carolina", "SC" ],
  43      [ "South Dakota", "SD" ],
  44      [ "Tennessee", "TN" ],
  45      [ "Texas", "TX" ],
  46      [ "Utah", "UT" ],
  47      [ "Vermont", "VT" ],
  48      [ "Virginia", "VA" ],
  49      [ "Washington", "WA" ],
  50      [ "West Virginia", "WV" ],
  51      [ "Wisconsin", "WI" ],
  52      [ "Wyoming", "WY" ]
  53    ].freeze
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS