I have this string
var str = "394987011016097814 1d the quick brown fox jumped over the lazy dog";
..and i'm trying to get it to become this array
[
"394987011016097814",
"1d",
"the quick brown fox jumped over the lazy fox",
]
I've seen this answer Split string on the first white space occurrence but that's only for first space.