Javascript Engine Nan Boxing Optimization Pointers V8 Why Does V8 Uses Pointer Tagging And Not Nan Boxing? July 02, 2024 Post a Comment I'm learning V8 internals now. I learned that V8 uses pointer tagging for value storing, but wo… Read more Why Does V8 Uses Pointer Tagging And Not Nan Boxing?
Data Structures Javascript Javascript Engine Javascript Objects Time Complexity What Is The Complexity Of Retrieval/insertion In JavaScript Associative Arrays (dynamic Object Properties) In The Major Javascript Engines? July 09, 2022 Post a Comment Take the following code example: var myObject = {}; var i = 100; while (i--) { myObject['f… Read more What Is The Complexity Of Retrieval/insertion In JavaScript Associative Arrays (dynamic Object Properties) In The Major Javascript Engines?