Update repo

This commit is contained in:
Marius Cerchez
2026-02-09 12:54:08 +00:00
commit 97c6c6575b
6 changed files with 409 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
const numberOfTimesToRepeat = 10;
const character = "🐶";
let answer = "";
for (let i = 0; i < numberOfTimesToRepeat; i++) {
answer.concat(character);
}
console.log(answer);