class Parent {}
class Child extends Parent {}
let child = new Child();
child = null;
// in chorme develop-tool memory tab, // why Parent instance still exist
class Parent {}
class Child extends Parent {}
let child = new Child();
child = null;
// in chorme develop-tool memory tab, // why Parent instance still exist