shorten() Data Array Functions Web & Application String sa1[] = { "OH ", "NY ", "CA "}; String sa2[] = shorten(sa1); print(sa1); // Prints "OH NY " println(); sa2 = shorten(sa2); print(sa2); // Prints "OH " Decreases an array by one element and returns the shortened array. append(array) boolean[], byte[], char[], int[], float[], or String[] Array (the same datatype as the input) append() expand() 1.0 Function Core Extended