Tail call elimination in Javascript
Posted Saturday May 13, 2006, 12:21 am, Over one day oldVia LtU I read about a tail call optimization decorator. Of course I immediately wondered if it was possible in JavaScript, and it is: Function.prototype.tailCallOptimized = function() { var g = this; return function() { for (var caller = arguments. ?
This post digest is 100% of the original post size.