Clear
Download
Share
Run Code
mount(playground => { const d = document.createElement('div'); const p = document.createElement('p'); const b = document.createElement('button'); const b2 = document.createElement('button'); d.style = 'border: 1px solid black; padding: 2em'; p.textContent = 'Count: 0'; p.style = 'text-align: center; font-weight: bold'; b.textContent = 'Click Me'; b2.textContent = 'Reset'; b2.style = 'background-color: red; color: white'; d.append(p,b,b2); let count = 0; b.onclick = () => { count++; p.innerHTML = 'Count: ' + count; } b2.onclick = () => { count = 0; p.innerHTML = 'Count: ' + count; } playground.appendChild(d); });