Tail Call Optimization implementation in Javascript Engines
问题 As of February 2019 in Chrome Version 71.0.3578.98 on Mac , the following program throws Uncaught RangeError: Maximum call stack size exceeded error. at a count of 16516 . const a = x => { console.log(x) a(x + 1) } a(1) I've done quite a bit of Googling, but wasn't able to find any articles discussing Chrome or other browser support for Tail Call Optimization (TCO) or any future plans to implement it. My two questions are: Is TCO currently supported in Chrome or any other browser or