After performing some manipulations, I have stored values in arrays called 'miles' and 'type'. My goal now is to display them as an object with their own specific properties. Here's what I have so far:
obj = {
"miles" : [500, 200],
"type": ["fer", "bug"]
};
The desired output format is as follows:
obj = {
"fer" : 500 ,
"bug" : 200
};
Thank you for any input on how to achieve this!