I have created an array here is my React Native code
this.state.ratingArray[key_value] = rating;
It is providing this data formate
[
key1: value,
key2: value,
key3: value,
]
And i want to convert it in
[
{key1 : value},
{key2 : value},
{key3 : value}
]
how can i do that please suggest something. Thanks in advance.