Skip to content

Instantly share code, notes, and snippets.

@riffrain
Created April 11, 2020 03:49
Show Gist options
  • Save riffrain/14cbd31280d11b5bdbb9b6d69995ad26 to your computer and use it in GitHub Desktop.
Save riffrain/14cbd31280d11b5bdbb9b6d69995ad26 to your computer and use it in GitHub Desktop.
array2object object2array
function array2object(arr) {
return { ...arr };
}
function object2array(obj) {
return Object.keys(obj).map((key) => obj[key]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment