I have an Observable array in knockout with arrays inside, there is an item inside each of the arrays called 'time'. How would I order the arrays inside my observable array so that they are in order, from low to high, based on the value of the item. The values are in Hour:Minute:Second format.
function viewModel() {
var self = this;
self.myObservable = ko.observableArray([
{time: "01:00:00", name: 'frank'},
{time: "05:30:00", name: 'bob'},
{time: "03:00:00", name: 'bill'},
{time: "00:00:21", name: 'john'},
{time: "00:12:00", name: 'paul'}
])
}