summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.html1
-rw-r--r--scripts/helloworld.js8
2 files changed, 0 insertions, 9 deletions
diff --git a/index.html b/index.html
index 18ac08e..3a5f1e2 100644
--- a/index.html
+++ b/index.html
@@ -17,6 +17,5 @@
<footer>
<a href="https://git.pwyazha.ru">git</a>
</footer>
- <script src="scripts/helloworld.js"></script>
</body>
</html>
diff --git a/scripts/helloworld.js b/scripts/helloworld.js
deleted file mode 100644
index 32ce9fd..0000000
--- a/scripts/helloworld.js
+++ /dev/null
@@ -1,8 +0,0 @@
-let count_number = 10;
-let count;
-for (count = 0;
- count < count_number;
- ++count)
-{
- console.log(count);
-}