Skip to content

Challenge Split Strings With Split

Rafael J. Rodriguez edited this page May 15, 2016 · 1 revision

Challenge Split Strings with Split

You can use the .split() method to split a string into an array.

split uses the argument you give to to split the string.

array = string.split(' ');

Clone this wiki locally