InterviewSolution
Saved Bookmarks
| 1. |
Which of the following property indicate the total size of the heap?(a) heapSize(b) totalHeapSize(c) totalJsHeapSize(d) totalHeap |
|
Answer» The correct answer is (c) totalJsHeapSize To explain I would say: usedJsHeapSize stores an object created with MemoryInfo constructor, containing jsHeapSizeLimit, totalJSHeapSize and usedJSHeapSize properties with numerical values. |
|