I have an object:
{
name: "user",
facebook: {
followers: 2341
},
instagram: {
followers: 5345
}
}
How can I get an array of all followers values without explicitely specifying the path (e.g. It could also be twitter instead of facebook)
[2341, 5345]