Created
December 17, 2020 17:10
-
-
Save brrd/170a12e761fa187d46d532d156cb4d67 to your computer and use it in GitHub Desktop.
Fill localStorage with data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
localStorage.clear(); | |
var i = 0; | |
var str = 'x'.repeat(50); | |
while(true) { | |
localStorage.setItem(i, str); | |
i++; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment