I have an array that is structured like this.
Object
(
[11065] => Object
(
[firtname] => Linda
[lastname] => Bell
[fullname] => Bell, Linda
)
[11110] => Object
(
[firstname] => Andrew
[lastname] => Smith
[fullname] => Andrew, Smith
)
[11279] => Object
(
[firstname] => Sabrina
[lastname] => Wu
[fullname] => Sabrina Wu
)
)
As you can see the array is current being sorted by the persons id given by [11065],[11110],[11279]
Is there a way to sort this array by person's lastname in JavaScript or jQuery?