Преглед изворни кода

Обновить 'README.md'

Donier пре 1 година
родитељ
комит
c60d030901
1 измењених фајлова са 6 додато и 0 уклоњено
  1. 6 0
      README.md

+ 6 - 0
README.md

@@ -0,0 +1,6 @@
+const button = document.getElementById("button");
+const output = document.getElementById("output");
+
+button.addEventListener("click", function() {
+    output.textContent = "Котакбас";
+});