Functions are first class citizens in Javascript (updated the sample after comments from Jeremy)..

    var passFunAndApply = function (fn,x,y,z) { return fn(x,y,z); };
    
    var sum = function(x,y,z) {
      return x+y+z;
    };
    
    alert( passFunAndApply(sum,3,4,5) ); // 12

[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