Js object, the attribute is not fixed, how to rotate the array

"future": {

        "day_20180829":{
            "temperature":"24~28",
            "weather":"",
            "weather_id":{
                "fa":"08",
                "fb":"10"
            },
            "wind":"3-5",
            "week":"",
            "date":"20180829"
        },
        "day_20180830":{
            "temperature":"24~29",
            "weather":"-",
            "weather_id":{
                "fa":"23",
                "fb":"04"
            },
            "wind":"",
            "week":"",
            "date":"20180830"
        }}

as above, I would like to convert it to the format of [0burexxxxxx recorder 1purl xxxxrem 2purl xxxxx]. No, no, no. Now I"ve written it like this myself. No, no, no. The conversion was not successful

clipboard.png

May.13,2021

const obj= {
    "day_20180829":{
        "temperature":"24~28",
        "weather":"",
        "weather_id":{
            "fa":"08",
            "fb":"10"
        },
        "wind":"3-5",
        "week":"",
        "date":"20180829"
    },
    "day_20180830":{
        "temperature":"24~29",
        "weather":"-",
        "weather_id":{
            "fa":"23",
            "fb":"04"
        },
        "wind":"",
        "week":"",
        "date":"20180830"
    }
};
const  = Object.values(obj);
console.log();

clipboard.png

Menu