diff --git a/Chapter 5/Exercise 5.2 b/Chapter 5/Exercise 5.2 new file mode 100644 index 0000000..6669612 --- /dev/null +++ b/Chapter 5/Exercise 5.2 @@ -0,0 +1,7 @@ +let counter = 0; +let step = 5; +do { + console.log(counter); + counter += step; +} +while (counter <= 100);