JSFiddle - React, Tailwind, and code Playground
by liyuanqiu
JavaScript
const d0 = document.createElement('div');
const b0 = document.createElement('button');
const b1 = document.createElement('button');
b0.innerText = 'Button 0';
b1.innerText = 'Button 1';
d0.append(b0);
d0.append(b1);
document.body.append(d0);
setTimeout(() => {
d0.prepend(b1);
}, 2000);