SOURCE

function drawStars(string, width, height) {
  for (let i = 0; i < height; i++) {
    let str = ''
    for (let j = 0; j < width; j++) {
      str = str + string
    }
    console.log(str)
  }
}
drawStars('*', 8, 5)
console 命令行工具 X clear

                    
>
console