Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. performance.memory.usedJSHeapSize
  2.  
  3. <html>
  4.  
  5. <body>
  6. <p id="memory" style="position: fixed; top:10px; left:10px; font-size: 1.5em;"></p>
  7. <script>
  8. setInterval(() => {
  9. document.getElementById("memory").innerHTML = performance.memory.usedJSHeapSize;
  10. }, 300);
  11.  
  12. </script>
  13. </body>
  14.  
  15. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement