0
can you give me full tutorial about array , strings and how we use them using example
about arrays
2 Answers
+ 1
let a = ["hi", "bye", "huh"]
console.log (a [0])
hi
console.log (a[1])
bye
console.log (a [0] + a [1])
hi bye
thats the gist of it
about arrays