What are the major concerns when comes to browser memory utilization between javascript object and html dom.
var testArray = [1,2,3,4,5,6,7,8,9,10]
vs
<input type="text" id="textTextbox" value="test value"/>
When looking at big picture lets say the page has 10,000 html dom on page and a javascript object holding a huge number of record lets say 50,000
- Which utilizes more memory on browser
- How the memory is managed for javascript objects
- How the html dom is managed by browser
Please help..
Regards,
Navin Leon