Parcourir la source

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

Donier il y a 1 an
Parent
commit
c60d030901
1 fichiers modifiés avec 6 ajouts et 0 suppressions
  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 = "Котакбас";
+});