This commit is contained in:
2024-11-24 18:12:39 +01:00
parent 3954d3b1bf
commit 774c355b45
3 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
for (let i = 1; i <= 100; i++) {
let output = "";
if (i % 3 === 0) output += "Tic";
if (i % 5 === 0) output += "Tac";
console.log(output || i);
}