InterviewSolution
Saved Bookmarks
| 1. |
Which of the following gives the high level breakdown of memory usage?(a) about:memory(b) memory(c) about-memory(d) about::memoryThe question was posed to me in an online interview.My question comes from Performance Navigation and Memory topic in chapter Invocation and Performance Navigation of JavaScript |
|
Answer» RIGHT option is (a) about:memory Explanation: The Memory column represents native memory. DOM NODES are stored in native memory. If this value is increasing, DOM nodes are getting CREATED. Typing about:memory into the location bar brings up a PAGE that gives a high-level breakdown of memory usage. |
|