The following code loops through a JavaScript object and collects only the properties that are arrays:
const building = this.building
let panoramaList = []
for (let key in building) {
  const panoramas = building[key]
  if (Array.isArray(panoramas)) {
    panoramaList.push({ [key]: panoramas })
  }
}
console.log(panoramaList)
In other words, it takes this:
{
  name: '',
  description: ''.
  livingroom: Array[0],
  study: Array[1],
  bedroom: Array[0]
}
and turns it into this:
[
  { livingroom: Array[0] },
  { study: Array[1] },
  { bedroom: Array[0] }
]
However, what I need to produce is this:
{
  livingroom: Array[0],
  study: Array[1],
  bedroom: Array[0]
}
How to accomplish that?