DOM Controls that do things
Input
xxxxxxxxxx
let b = document.createElement('button');
b.innerText = 'click me';
b.onclick = ()=>{
document.body.append('Ho=ello world');
}
Output
let b = document.createElement('button'); b.innerText = 'click me'; b.onclick = ()=>{ document.body.append('Ho=ello world'); }
let b = document.createElement('button'); b.innerText = 'click me'; b.onclick = ()=>{ document.body.append('Ho=ello world'); }