Example of my Array =
[{
    name: leon,
    id: 1
}, {
    name: laura
    id: 20003
}, {
    name: anne
    id: 45
}]
Currently in the UI, the array will look like:
- leon
- laura
- anne
How can one use lodash to sort the array by the name keys in alphabetical order?
 
     
     
     
     
    