add programm

pull/859/head
Yuliia Mustafina 3 years ago committed by GitHub
parent 06648f28ba
commit 0b123d0cae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,6 +8,14 @@ Create a program that lists every 3rd number between 1-20 and prints it to the c
## Rubric ## Rubric
```
for (let i = 0; i <= 20; i++) {
if (i % 3 == 0 && i != 0) {
console.log(i);
}
}
```
| Criteria | Exemplary | Adequate | Needs Improvement | | Criteria | Exemplary | Adequate | Needs Improvement |
| -------- | --------------------------------------- | ------------------------ | ------------------------------ | | -------- | --------------------------------------- | ------------------------ | ------------------------------ |
| | Program runs correctly and is commented | Program is not commented | Program is incomplete or buggy | | | Program runs correctly and is commented | Program is not commented | Program is incomplete or buggy |
Loading…
Cancel
Save