Functions and Arrow Functions - 02.Rectangle of Stars
https://judge.softuni.bg/Contests/Compete/Index/306#1
If there is no parameter specified, the rectangle should always be of size 5.
Къде това ограничение в кода на Наков от лекцията?
function squareOfStars(n) {
function printStars(count = n) {
console.log("*" + " *".repeat(count-1)); }
for (let i=1; i<=n; i++) printStars(); }