lets say I have an array like this:
[ { full_name: 'Sickö' },
{ location: 'New York City, United States' },
{ follower: '1.2M' },
{ er: '5.59%' },
{ topics: 'Fashion' } ]
and I want to make it as an object like:
{
fullname: 'Sicko',
location: 'New York City, United State'
..and more
}
I'm aware that I can combine them using Object.assign but no idea how I can assign all of them.