Skip to content

Instantly share code, notes, and snippets.

@Juandresyn
Created June 12, 2019 19:47
Show Gist options
  • Save Juandresyn/b6b5cabc4a705003b440c6d65e1e810f to your computer and use it in GitHub Desktop.
Save Juandresyn/b6b5cabc4a705003b440c6d65e1e810f to your computer and use it in GitHub Desktop.
Object to Array
const objectToArray = (obj) => {
const tempArray = [];
Object.keys(obj).forEach((i) => tempArray.push(obj[i]));
return tempArray;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment