Wrap your head around this: Higher order programming in Javascript - using functions as values:
arrayOfObjects.sort(
function (x,y) {
return x.date-y.date;
}
);
[at w3future.com]
Interaction design • webdevelopment • web art • photography
Wrap your head around this: Higher order programming in Javascript - using functions as values:
arrayOfObjects.sort(
function (x,y) {
return x.date-y.date;
}
);
[at w3future.com]