0

can you give me full tutorial about array , strings and how we use them using example

about arrays

13th Feb 2019, 1:04 AM
Zelalem Tenaw Ztl
Zelalem Tenaw Ztl - avatar
2 odpowiedzi
+ 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
13th Feb 2019, 6:41 AM
Jason Kennedy