print array elements in new line javascript

Solutions on MaxInterview for print array elements in new line javascript by the best coders in the world

showing results for - "print array elements in new line javascript"
Timothée
18 Oct 2018
1// Thats literally how it works.
2array = ["Bob", "James", "Taylor"]
3for (i = 0; i< array.length; i++){
4	console.log(array[i]) }