UNPKG

210 BJavaScriptView Raw
1function test (call) {
2 setTimeout(() => {
3 const t = performance.now();
4 for (let a = 0; a < 10000; a++) document.body.appendChild(call(a));
5 alert(Math.round(performance.now() - t) + 'ms');
6 });
7}