Js converts data

The json obtained by

is, for example,
`var tempData= [{

]
FieldDes:"",
FieldName:"Male",
Unit:"",
Value:4

}, {

FieldDes:"",
FieldName:"Female",
Unit:"",
Value:3

}] `;
how to use js to transform into a structure suitable for binding on the page?
for example, convert to

var tempData={Male:4,Female:3}
Mar.10,2021


var tempData = [
  {

    FieldDes: "",
    FieldName: "Male",
    Unit: "",
    Value: 4
  }, {

    FieldDes: "",
    FieldName: "Female",
    Unit: "",
    Value: 3
  }
]

let result = {}
tempData.forEach(item => result[item.FieldName] =item.Value)
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b4208f-2bd59.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b4208f-2bd59.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?