JSFiddle - React, Tailwind, and code Playground
by cqmyg asdq
JavaScript
(function() {
"use strict";
let data = "hello world, hello world, hello world, hello world",
count = 100000,
i = null;
for(i = 0; i < count; ++i) {
try {
localStorage.setItem(i, data);
} catch( exception ) {
console.log(i);
console.log(exception);
break;
}
}
}());