AkiVaMu Just tiny things come to mind...

JavaScript summary

This is very good post series about JS under the hood: JS Engine & async programming

module.exports & exports

How does this works

var vs let
var is scoped to the nearest function block
let is scoped to the nearest enclosing block

Variables: Scopes, Environments, and Closures

Prototype