I have an object that retrieves 4 different elements with different numerical values. I’m trying to access and retrieve all these numerical values.
The object returns the following:
JavaScript
x
6
1
{__ob__: Observer}
2
collectedTrashCount: 139
3
dangerousAreaCount: 11
4
schoolCount: 5
5
trashBinCount: 44
6
If I want to retrieve the value of the collectedTrashCount
, I would simply do the following:
JavaScript
1
9
1
computed: {
2
dashboardList: function () {
3
return this.$store.getters.getDashboard;
4
},
5
checkCount: function () {
6
console.log(this.dashboardList.collectedTrashCount);
7
}
8
},
9
The console.log
in this case would give me 139
.
My question is: What should I do to return all these values such as: 139
, 11
, 5
, 44
?
Advertisement
Answer
You could use entries
method to map that values in an array :
JavaScript
1
5
1
checkCount: function () {
2
return Object.entries(this.dashboardList).map(([key, val]) => val)
3
4
}
5