Updated List Element.md (markdown)
commited
commit
3a3e7d0dc0301507a8605661e1674e94164bcfc8
... | ... | @@ -1,6 +1,14 @@ |
1 | 1 | Gets a value stored in a list, with index starting from 0 (max 1,048,575). The output can also wired to [[Set Reference]] to store a value in a list. |
2 | 2 | |
3 | 3 | [[/uploads/Listelement.png]] |
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 each is value defined as this varible[index] , normally index in real scripting is automatically generated depending on its order e.g. in JS language: |
|
6 | `var list = new Array["Hello", "Hi" , "Bye"]` |
|
7 | `document.write(list[0])` |
|
8 | ||
9 | In which in outputs "Hello" as hello is defined as variable `list` and its index is `[0]`. |
|
10 | ||
11 | *auto-generated index in all text script language always start with index 0. |
|
4 | 12 | |
5 | 13 | ## Example |
6 | 14 |