Lampirkan skrip ke tombol html

<button type="button" onclick="clickHandler()">Click Me!</button>

<script>
    function clickHandler() {
      alert("something");
    }
</script>
Brayden Scholtz