Geek Culture
Published in

Geek Culture

How to determine exactly and quickly the total memory used by a web page?

Not the heap size, but the total memory used by a single web page.

let a, b, c;printMemory('baseline')
.then(() => {
a = makeString(10);
return printMemory('a = makeString(10)');
})
.then(() => {
b =…

--

--

A new tech publication by Start it up (https://medium.com/swlh).

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store
Marian Čaikovski

Java, JavaScript and SQL developer. Interested in data collection and visualization. Comment and disagree with my personal notes on tiny problems that I faced.