From 3d71ae77cd7e70d928343d6352b8d0e42a41b85a Mon Sep 17 00:00:00 2001 From: SaniieAsanova <114922239+SaniieAsanova@users.noreply.github.com> Date: Sun, 30 Oct 2022 16:04:14 +0100 Subject: [PATCH] Adding Homework4 Adding Homework4 --- 2-js-basics/4-arrays-loops/assignment.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/2-js-basics/4-arrays-loops/assignment.md b/2-js-basics/4-arrays-loops/assignment.md index 0b9bd6dc..b8a0f662 100644 --- a/2-js-basics/4-arrays-loops/assignment.md +++ b/2-js-basics/4-arrays-loops/assignment.md @@ -10,4 +10,7 @@ Create a program that lists every 3rd number between 1-20 and prints it to the c | Criteria | Exemplary | Adequate | Needs Improvement | | -------- | --------------------------------------- | ------------------------ | ------------------------------ | -| | Program runs correctly and is commented | Program is not commented | Program is incomplete or buggy | \ No newline at end of file +| | Program runs correctly and is commented | Program is not commented | Program is incomplete or buggy | + +for(let i = 3; i<=20; i+=3) + console.log(i);