Oletem
10/1/2017 - 12:36 PM

Split Strings with split

You can use the split method to split a string into an array. split uses the argument you pass in as a delimiter to determine which points


var string = "Split me into an array";
var array = [];

// Only change code below this line.

array = string.split(" ");