DOM Controls that do things
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');
}