I have object of array of object
{ "94":[{"Full Name":"Phalla Morn"}], "95":[{"Full Name":"Pum Chhenghorng"}], "99":[{"Full Name":"Proen Pich"}] } I want to convert it to array of object:
[ {"Full Name":"Phalla Morn"}, {"Full Name":"Pum Chhenghorng"}, {"Full Name":"Proen Pich"} ] Please help.
[].concat(...Object.values(arr)). This one works for me. thank.s