I have a javascript array of object like this
let Object  = [
   {"Form Factor": "2.5 inch"},
   {"Capacity": "1 TB"},
   {"Memory Components": "NAND 3"}
]
i want to reduce it to just an object like this
resultObject = {
  "Form Factor" : "2.5 Inch",
  "Capacity": "1 TB",
  "Memory Components" : "NAND 3"
}
 
     
    