reverse()DataArray FunctionsWeb & Application
String sa[] = { "OH ", "NY ", "MA ", "CA "};
sa = reverse(sa);
print(sa); // Prints "CA MA NY OH "
Reverses the order of an array.
reverse(array)
booleans[], bytes[], chars[], ints[], floats[], or Strings[]Array (the same datatype as the input)
sort()
1.0FunctionCoreExtended