.trimText(characters)
Description
Parameters
Usage On Strings
num = "hello world, im doing pretty well"
log num.trimText(15)
// "hello world, im..."
// trimming just cuts the text off when it gets too long and replaces it with a ...Last updated