Skip to content

Commit 88ff7f2

Browse files
feat: solved 3rd stage of the Hyperskill project "Chalkboard Printer"
1 parent d6f793d commit 88ff7f2

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

hyperskill/08_chalkboard_printer/03/.gitkeep

Whitespace-only changes.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
const input = require('sync-input');
2+
3+
const name = input("Enter name: ")
4+
const surname = input("Enter surname: ")
5+
const message = input("Enter message: ")
6+
const repeats = Number(input("Enter number of repeats: "))
7+
8+
for (let i = 0; i < repeats; i++) {
9+
console.log(`This is ${name} ${surname} and ${message}`);
10+
}

hyperskill/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ There are no certificates for this track yet.
3232

3333
[My](https://hyperskill.org/profile/7889902) solutions to [Hyperskill](https://hyperskill.org) projects from the [JavaScript Core](https://hyperskill.org/tracks/32) track.
3434

35-
| Project | Level | Status |
36-
| --------------------------------------------- | ------ | ----------- |
37-
| [Chalkboard Printer](./08_chalkboard_printer) | Medium | In Progress |
35+
| Project | Level | Status |
36+
| --------------------------------------------- | ------ | --------- |
37+
| [Chalkboard Printer](./08_chalkboard_printer) | Medium | Completed |

0 commit comments

Comments
 (0)