This commit is contained in:
2026-03-21 14:41:01 +03:00
parent cd9a88056b
commit 463d03232a
3 changed files with 0 additions and 22 deletions
-9
View File
@@ -1,9 +0,0 @@
let myWork = [];
for (let i = 1; i <= 10; i++) {
let status = i % 2 === 0 ? true : false;
let lesson = { name: 'Lesson ' + i, status: status};
myWork.push(lesson);
}
console.log(myWork);