JSFiddle - React, Tailwind, and code Playground

by brigand

HTML

<ul></ul>

JavaScript

const data = Array.from({
  length: 1000
}, (x) => ({
  label: Math.random().toString(),
  active: Math.random() > 0.5
}));

const start = performance.now();
for (const item of data) {
  const li = document.createElement('li')
}