.concat(val)
Description
Parameters
Usage On Strings
str = "hello"
// setup the string
log str.concat(" world")
// returns "hello world"
// the string was concatenated with " world"Last updated
str = "hello"
// setup the string
log str.concat(" world")
// returns "hello world"
// the string was concatenated with " world"Last updated