Duplicate a single item to create a list of a certain size
This node creates a new list by duplicating a single item with the size of the new list either matching the size of another list, or a specified size.
For example, if we were to duplicate “a” to match [1, 2, 3], the output would be: [a, a, a].
The below example is a pipeline for creating a list of size 5 with all the elements as the inputted value.if the input value is “a” and the list size is designated as 5, the output will be: [“a”, “a”, “a”, “a”, “a”]