547 Views
ECMAScript 6 offers tail call optimization, where you can make some function calls without growing the call stack. This blog post explains how that works and what benefits it brings. To understand what tail call optimization (TCO) is, we will examine the following piece of code.
0 comments