Hey there, I've got a JSON return object that looks like this:
color_selected = [
{ id: 4},
{ id: 3}
];
Any tips on how I can convert it to the following format?
color_selected = [4,3]
Appreciate any help or suggestions you may have. Thanks!