|
|
|
|
|
by s3th
3775 days ago
|
|
There's definitely a lot of room for improvement. The V8 team has been working on finishing baseline implementations for all of ES6 before spending significant time optimizing particular features. But improvements are coming quickly! In the last few weeks, for example, ES6 rest parameters got 8-10x faster and Object.assign() is now as fast as _.assign() [0]. In general, we will focus on improving the performance of the most-used features first. Arrow functions, generators, etc. are high on the list. [0]: https://twitter.com/addyosmani/status/699976753255751681 (Disclaimer: I'm a PM on the V8 team) |
|