Skip to content

Instantly share code, notes, and snippets.

@PunkChameleon
Last active August 29, 2015 14:00
Show Gist options
  • Select an option

  • Save PunkChameleon/ba53a7a00b2a74657939 to your computer and use it in GitHub Desktop.

Select an option

Save PunkChameleon/ba53a7a00b2a74657939 to your computer and use it in GitHub Desktop.
// Before
var response = {
"vals" : [
'picklist',
'values',
'here'
]
}
// After
var response = {
"vals" : [
{
value : 1,
label: 'picklist'
},
{
value : 2,
label: 'values'
},
{
value : 3,
label: 'here'
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment