Updated List Element.md (markdown)
commited
commit
0e3d56f729a5dd07e1d14aaf04b58199646bb76c
... | ... | @@ -6,7 +6,7 @@ The list basically is what you call in scripting language as "Array", but what r |
6 | 6 | `var list = new Array["Hello", "Hi" , "Bye"]` |
7 | 7 | `document.write(list[0])` |
8 | 8 | |
9 | In which in outputs "Hello" as hello is defined as variable `list` and its index is `[0]`. |
|
9 | In which it outputs "Hello" as hello is defined as variable `list` and its index is `[0]`. |
|
10 | 10 | |
11 | 11 | *auto-generated index in all text script language always start with index 0. |
12 | 12 |