I want to sort an array like this
[
{
'type': 'apple',
'like': 3
},
{
'type': 'pear',
'like': 5
},
...
]
I was using lodash
lib for the sorting.
Is there a any more simple way to sort an array by like
value?