/* Looping a Triangle Eloquest Javascript answer */ let hash = ''; for (let i = 0; i < 7; i++) { console.log (hash += '#') }