I've array like this
const data=[ {a:aa, b:bb, c:cc, d:dd, status:[key:0, value: true] },
{a:ee, b:ff, c:gg, d:hh, status:[key:1, value: true] },
{a:ii, b:jj, c:kk, d:ll, status:[key:1, value: true] },
]
I want to convert it into like this
const data=[{0:aa, 1:bb, 2:cc, 3:dd},
{0:ee, 1:ff, 2:gg, 3:hh},
{0:ii, 1:jj, 2:kk, 3:ll},
]
P.S. thank you.