إنشاء عداد الرقم وعرضة في صفحة html in javascript مع onclick in javascript مع تكره اكثر من مراه in javascript

<!DOCTYPE html>
<html>
<head>
    <title>Counter</title>
</head>
<body>
    <h1 id="counter">0</h1>
    <button onclick="incrementCounter()">Increase Count</button>
    <script>
        let count = 0;
        
        function incrementCounter() {
            count++;
            document.getElementById("counter").innerText = count;
        }
    </script>
</body>
</html>
375 chars
19 lines

related categories

gistlibby LogSnag