Update repo

This commit is contained in:
Marius Cerchez
2026-02-09 12:54:08 +00:00
committed by cerchez07
parent 2a4dcd923f
commit 0645c7f572
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);