JavaScript memory limit

后端 未结 6 1937
青春惊慌失措
青春惊慌失措 2020-11-28 11:42

Is there a maximum amount of data a JavaScript application can store?

I guess this is handled by the browser and each one has its limitation?

If there isn\'t

6条回答
  •  南方客
    南方客 (楼主)
    2020-11-28 12:17

    I think the memory limitation is from the browser. We can use the DevTools to figure that out. Like in chrome, press F12 and enter window.performance.memory you can see the memory info.

     window.performance.memory
    

    enter image description here

提交回复
热议问题