Code explains better than words could.
{% set items = ["item1","item2"] %}
{% set items[0] = "new value" %}
expected behavior: {{items}} = ["new value","item2"]
actual behavior: {{items}} = ["item1","item2"]
We have list functions, but none seem to recreate the same sort of simple functionality that many programming languages support.
Code explains better than words could.
We have list functions, but none seem to recreate the same sort of simple functionality that many programming languages support.