uniq
배열에서 중복되는 모든 요소를 제거합니다.
입력
{% assign my_array = "ants, bugs, bees, bugs, ants" | split: ", " %}
{{ my_array | uniq | join: ", " }}
출력
ants, bugs, bees
배열에서 중복되는 모든 요소를 제거합니다.
입력
{% assign my_array = "ants, bugs, bees, bugs, ants" | split: ", " %}
{{ my_array | uniq | join: ", " }}
출력
ants, bugs, bees