Skip to content

Instantly share code, notes, and snippets.

@brrd
Created December 17, 2020 17:10
Show Gist options
  • Save brrd/170a12e761fa187d46d532d156cb4d67 to your computer and use it in GitHub Desktop.
Save brrd/170a12e761fa187d46d532d156cb4d67 to your computer and use it in GitHub Desktop.
Fill localStorage with data
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