Updated List Element.md (markdown)
commited
commit
7d5a2af4cf89f0bd54235ba9c2851057da8bb3be
... | ... | @@ -2,7 +2,7 @@ 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 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: |
|
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 | 6 | `var list = new Array["Hello", "Hi" , "Bye"]` |
7 | 7 | `document.write(list[0])` |
8 | 8 |