Skip to content

Array Slice#

The arrayslice converter receives an array of any type and removes any position of the array that is not in the given interval. It receives a start position and a count input. The transformed array will be the original array from the position given by the start position input, until it has added the number of positions equal to the count input number. If count is 0 it will assume that count is the length of the array. It uses the javascript .slice() function.

Settings#

Name Data Type Description
start Integer First position to include (0 means the first element of the array)
count Integer Number of positions to slice

image120