Updated List Element.md (markdown)
commited
commit
32304cadefc608400489f7767fb59794a04f275f
... | ... | @@ -1,8 +1,11 @@ |
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 | ||
5 | ||
6 | ||
4 | 7 | ## 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 |
|
8 | 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 | 9 | |
7 | 10 | e.g. in JS language: |
8 | 11 | `var list = new Array["Hello", "Hi" , "Bye"]` |