Entroper In Python you have split() method for strings.
"50 10 60".split() would split the string to list ["50", "10", "60"] (the numbers are still strings), maybe JavaScript has an equivalent string method.
13th Jan 2020, 6:43 AM
Seb TheS
+ 1
Spaces? Do you mean you want to separate items with spaces or treat items as spaces?