Garbage Collection
Introduction
Simple Example
let user = {
name: "John"
};
user = null;// user has a reference to the object
let user = {
name: "John"
};
let admin = user;
user = null;Interlinked objects
GC Trace
Token value
Interpretation
Types of GC
Introduction


Mark-sweep


Scavenger

Clean GC Manually
Reference
Last updated


