projet-clicodrome/js/intro.js
2024-11-21 11:26:25 +01:00

10 lines
No EOL
238 B
JavaScript

document.addEventListener("click",firstClick)
function firstClick(){
const click = document.createElement("button")
click.innerText="click"
document.body.appendChild(click)
document.removeEventListener("click",button)
}