append()DataArray FunctionsWeb & Application
String sa1[] = { "OH ", "NY ", "CA "};
String sa2[] = append(sa1, "MA ");
print(sa2); // Prints "OH NY CA MA"
Expands an array by one element and adds data to the new position. The datatype of the element parameter must be the same as the datatype of the array.
append(array, element)
boolean[], byte[], char[], int[], float[], or String[]new data for the arrayArray (the same datatype as the input)
shorten()
expand()
1.0FunctionCoreExtended