Convert column (object of objects) into a row (array of objects) – Javascript
I am having an object in the below format where name, age and gender are the column names and the object assigned to them are values of that column. { 'name': { 0: 'Alpha', 1: 'Beta', 2: 'Gamma' }, 'age':…