Given the following object :
var fix_num : 0;
kwT: {
"0": 10.2,
"1": 0,
}
I am trying to figure out how to convert it into an array with this specific format :
[fix_num.key_of_object_kwT, fix_num.key_of_object_kwT, ... etc]
The desired result should look like this :
[0.0, 0.1]
Any help or guidance on this issue would be greatly appreciated.