Updated List Element.md (markdown)
commited
commit
a0dc6367954a44c934dd80a18d0bb0d5c2cdf1b0
... | ... | @@ -2,7 +2,9 @@ Gets a value stored in a list, with index starting from 0 (max 1,048,575). The o |
2 | 2 | |
3 | 3 | [[/uploads/Listelement.png]] |
4 | 4 | ## Notes |
5 | The list basically is what you call in scripting language as "Array", but what really is this array. An array is single variable which can contain multiple values , in then which of each value defined as "varible[index]" , normally index in real scripting is automatically generated depending on it's order e.g. in JS language: |
|
5 | The list basically is what you call in scripting language as "Array", but what really is this array. An array is single variable which can contain multiple values , in then which of each value defined as "varible[index]" , normally index in real scripting is automatically generated depending on it's order |
|
6 | ||
7 | e.g. in JS language: |
|
6 | 8 | `var list = new Array["Hello", "Hi" , "Bye"]` |
7 | 9 | `document.write(list[0])` |
8 | 10 |