Javascript memory usage tracking

Is there a way in javascript to keep track of the memory used by the application? I don’t think about the browser extensions used to debug memory leaks, etc., but for the application to track its own memory consumption in order to be able to make a qualified decision about whether to release memory or not.

+5
source share
2 answers

to be able to make a qualified decision about the release of memory or not.

JavaScript has an automatic garbage collector for managing memory. You cannot manually free memory and not call the garbage collector (for example, in java and C #, for example).

0
source

All Articles