Skip to main content
Array: Fill with value Fills an array with the provided length and value.

Fields

Start

The start index to use when creating the array.

Length

The length of the array to create.

Sample data

InputStartLengthResult
003[0, 0 , 0]
“ABC”03[“ABC”,“ABC”,“ABC”]
“ABC”23{2: “ABC”, 3: “ABC”, 4: “ABC”}