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]..
[1]: http://www.ibm.com/developerworks/library/wa-javascript.html