how to print elements in an array in javascript code example
Example 1: how to print elements in an array in javascript
var array = [1,2,3]
for(var i = 0; i < array. length ; i++){
console. log(array[i])
}
Example 2: how to print an array in javascript
var arr = ["Apples", "Lemons", "Mangoes"]
console.log(arr)
console.log("https://discord.gg/5yjWgMS")