Logmanager documentation
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

List structure

List is a data structure also known as array in other implementations. Every list element is a value. Every list element has its own internal positive integer index starting with zero.

It is possible to access the element via its numeric index. An element can be none, number, string, dictionary or a list.

Example of a list data structure:

{
  "list": ["item1", "item2", "item3"]
}