thelolcat
thelolcat

Reputation: 11635

How much memory can I use in javascript?

How much elements can I keep in the "detached" state in the DOM ? Is there any limit?

Upvotes: 0

Views: 72

Answers (2)

EvilZebra
EvilZebra

Reputation: 1072

Different browsers have certain limitations depending on what you're doing (like very large getImageData and putImageData you may run into problems). But generally there is no limit.

Upvotes: 1

user2490157
user2490157

Reputation:

There is no limit; A javascript program can use up all your RAM without being stopped.

Upvotes: 1

Related Questions