|
You are here |
nithinbekal.com | ||
| | | | |
volgarev.me
|
|
| | | | | ||
| | | | |
2ality.com
|
|
| | | | | Update 2018-05-09: Even though tail call optimization is part of the language specification, it isn't supported by many engines and that may never change. The ideas are still interesting, however and explained in this blog post. 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. | |
| | | | |
abdulapopoola.com
|
|
| | | | | The biggest advantage of using tail calls is that they allow you to do extensive operations without exceeding the call stack. This makes it possible to do a lot of work in constant space without running into out of memory exceptions; this happens because the frame for the currently executing function is re-used by the... | |
| | | | |
vishaltelangre.com
|
|
| | | |||