0
Help write a loop that makes 7 calls to console. log?
I need help in writing a loop that makes 7 calls to console.log to output a string in the form of a triangle like this: # ## ### #### ##### ###### ####### Any ideas are welcome. Thanks!
4 Answers
+ 3
for(var line = "#" ; line.length < 8 ;line += "#") {
console.log(line)
}
+ 1
What is line.length
0
it s unternal function
0
internal function