v10.8.0
Push an element into array. It’s NON-DESTRUCTIVE, i.e. it does not mutate the array, but rather make a copy and mutate that.
Input
1 | {% assign fruits = "apples, oranges" | split: ", " %} |
Output
1 | - apples |
v10.8.0
Push an element into array. It’s NON-DESTRUCTIVE, i.e. it does not mutate the array, but rather make a copy and mutate that.
Input
1 | {% assign fruits = "apples, oranges" | split: ", " %} |
Output
1 | - apples |