-
How can I use the for loop to concat a string as opposed to making an array. Should turn into this |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Oops, I found join, although I still am having trouble getting it to work. |
Beta Was this translation helpful? Give feedback.
-
Given this input:
you can get the output you want with:
Having to use flatten and multiple for loops is not really ideal, so I think we do need to add an array traversal operator (already planned in issue #183). |
Beta Was this translation helpful? Give feedback.
Given this input:
you can get the output you want with:
Having to use flatten and multiple for loops is not really ideal, so I think we do need to add an array traversal operator (already planned in issue #183).