Skip to content Skip to sidebar Skip to footer
Showing posts with the label V8

Switch Statement And Scopes In Es2015

Consider this ES2015 module and the behavior when run in node v4.4.5. 'use strict' const o… Read more Switch Statement And Scopes In Es2015

Google Apps Script Does Not Fully Execute For Other Users After V8 Was Introduced

I wrote a script (with a lot of assistance from the good folks here) that copies a folder (and cont… Read more Google Apps Script Does Not Fully Execute For Other Users After V8 Was Introduced

Why Is __proto__ Undefined?

While reading on Javascript's prototypes I encountered this behaviour I can't explain. I am… Read more Why Is __proto__ Undefined?

How Can I Include Another Js File File In Today's V8?

I find an old anwser and later updates here, but it is hard for me to adapt this code to the latest… Read more How Can I Include Another Js File File In Today's V8?

How Is Adding A New Class With Prototype Methods A Form Of V8 Optimization In Js?

I'm reading through Winston's code base and there was a comment in their DerivedLogger clas… Read more How Is Adding A New Class With Prototype Methods A Form Of V8 Optimization In Js?

In Javascript V8 Does Compilation Phase Happen To Functions Before Execution Phase Then All The Code Is Executed Or Only For Global Context

I read many articles saying that compilation(creation) phase happens first to the global execution … Read more In Javascript V8 Does Compilation Phase Happen To Functions Before Execution Phase Then All The Code Is Executed Or Only For Global Context

Hidden Classes And Equivalence Between {} Object Vs. Custom Constructor (v8)

Given this article: http://richardartoul.github.io/jekyll/update/2015/04/26/hidden-classes.html If … Read more Hidden Classes And Equivalence Between {} Object Vs. Custom Constructor (v8)