Splitting a String into an Array of Substrings
Learn how to split strings into arrays using the 'split' method.
We'll cover the following...
We'll cover the following...
The split method
The split
method splits a string into an array of substrings. Split expects one argument describing how the split should be made.
For ...