how set the code of the click event added to a button code example
Example 1: javascript onclick
document.getElementById("myBtn").addEventListener("click", function() {
alert("Hello World!");
});
Example 2: javascript button
<button onclick="Function()">Text</button>