.reduce, object to array, index by property
// const peopleArray = [
// {
// "id": "aron",
// "hobby": "games"
// },
// {
// "id": "scott",
// "hobby": "ninjitsu"
// }
// ];
const indexedPeople = peopleArray.reduce(
(ac, p) => ({...ac, [p.id]: p }), {} )
// {
// "aron": {
// "id": "aron",
// "hobby": "games"
// },
// "scott": {
// "id": "scott",
// "hobby": "ninjitsu"
// }
// }