Functions are first class citizens in Javascript..

    var sum = function(x,y,z) {
      return (x+y+z);
    }
    alert(sum(1,2,3));

[Functional programming techniques can be used to write elegant javascript][1]..

Particularly, functions can be passed as parameters, e.g. [Array.filter()][2] accepts a callback:

    [1, 2, -1].filter(function(element, index, array) { return element > 0 });
    // -> [1,2]


  [1]: http://www.ibm.com/developerworks/library/wa-javascript.html
  [2]: http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Array/filter