.split(characters)
Description
Parameters
Usage On Strings
num = "hello world, im doing pretty well"
log num.split(" ")
// ["hello","world,","im","doing","pretty","well"]Last updated
num = "hello world, im doing pretty well"
log num.split(" ")
// ["hello","world,","im","doing","pretty","well"]Last updated