Skip to content

Challenge Split Strings With Split

Quincy Larson edited this page Aug 20, 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