milov.nl

Interaction design • webdevelopment • web art • photography

December 2001

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]