Answers for "a JavaScript program which prints the elements of the following array"

1

how to print a array js

var array = [1,2,3]

for(var i = 0; i < array.length ; i++){
    console.log(array[i])
}
Posted by: Guest on June-05-2020

Code answers related to "a JavaScript program which prints the elements of the following array"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language