Skip to content

Instantly share code, notes, and snippets.

@camjocotem
Created October 31, 2023 11:45
Show Gist options
  • Select an option

  • Save camjocotem/69bf17a17e3bd30382292b270c3df80e to your computer and use it in GitHub Desktop.

Select an option

Save camjocotem/69bf17a17e3bd30382292b270c3df80e to your computer and use it in GitHub Desktop.
Javascript Object dictionary
Object.dictionary = function(obj){
return Object.entries(obj).map(entry => {
return {
key: entry[0],
value: entry[1]
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment