Javascript Engine Nan Boxing Optimization Pointers V8 Why Does V8 Uses Pointer Tagging And Not Nan Boxing? May 19, 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?
Javascript Optimization Variable Assignment Javascript Multiple Asignment Re-evaluation Or Result Passing? March 07, 2024 Post a Comment The multiple assignment (or is it called chaining?) that I'm talking about is assignment such a… Read more Javascript Multiple Asignment Re-evaluation Or Result Passing?
Case Statement Javascript Optimization Switch Statement Dealing With Combining Cases & Duplicate Cases In Switch Statements December 22, 2023 Post a Comment Is it okay to combine cases that share assignments and repeat the case for assignments that are not… Read more Dealing With Combining Cases & Duplicate Cases In Switch Statements
Javascript Optimization Shortcut Fusion Optimization In Javascript December 14, 2023 Post a Comment I have heard that lodash and other javascript libraries use a technique called 'shortcut fusion… Read more Shortcut Fusion Optimization In Javascript
Javascript Optimization Javascript: Fast Random Indexing Of Object Keys May 28, 2023 Post a Comment I am attempting to randomly select a random property from an object that I use as a dictionary for … Read more Javascript: Fast Random Indexing Of Object Keys
Browser Css Dom Javascript Optimization Is It Possible To Direct Which Elements Of A Page Are Painted First By The Browser? April 25, 2023 Post a Comment I wanted to know if there was any way to control browser painting, for example I'd like to load… Read more Is It Possible To Direct Which Elements Of A Page Are Painted First By The Browser?
Garbage Collection Javascript Memory Leaks Optimization Requestanimationframe RequestAnimationFrame Garbage Collection August 21, 2022 Post a Comment I'm profiling the following code's memory usage using the Timeline in Chrome Dev Tools v27.… Read more RequestAnimationFrame Garbage Collection