Skip to content

Instantly share code, notes, and snippets.

@zplume
Last active February 1, 2019 14:30
Show Gist options
  • Save zplume/a8374f90ea9398bbd88c08adc37e6401 to your computer and use it in GitHub Desktop.
Save zplume/a8374f90ea9398bbd88c08adc37e6401 to your computer and use it in GitHub Desktop.
// create an object from an array of values with Array.reduce
const objectFromArray = [4,5,6].reduce((output, item, index) => {
output[index] = item; // assign new key/value to output object
return output;
},
{} // initial value - empty object
);
// objectFromArray:
// {0: 4, 1: 5, 2: 6}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment