why parent class instance not release in javascript

Viewed 15

class Parent {}

class Child extends Parent {}

let child = new Child();

child = null;

// in chorme develop-tool memory tab, // why Parent instance still exist

enter image description here

0 Answers
Related