method removeLastValue

void removeLastValue();

Argumente

Zurückgegebener Wert

This method removes the last element in the array.
var arrayObj = shell.serviceManager.basics.array;
arrayObj.addValue("a");
arrayObj.addValue("b");
arrayObj.addValue("c");
arrayObj.removeLastValue();