Skip to content

Instantly share code, notes, and snippets.

@fernandojunior
Created April 18, 2016 13:01
Show Gist options
  • Select an option

  • Save fernandojunior/c128b02115a90cdfc072cdf57d6067d1 to your computer and use it in GitHub Desktop.

Select an option

Save fernandojunior/c128b02115a90cdfc072cdf57d6067d1 to your computer and use it in GitHub Desktop.
object to array
var objectToArray = function(object) {
return Object.keys(object).map(function(key) {
return {'key': key, 'value': object[key]};
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment