Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 1.09 KB

v8.md

File metadata and controls

19 lines (15 loc) · 1.09 KB

Bookmarks tagged [v8]

https://v8.dev/

V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.


https://richardartoul.github.io/jekyll/update/2015/04/26/hidden-classes.html

Optimization takeaways

  1. Always instantiate your object properties in the same order so that hidden classes, and subsequently optimized code, can be shared.
  2. Adding properties to an object after i...