freeCodeCamp/guide/english/certifications/javascript-algorithms-and-d.../functional-programming/split-a-string-into-an-arra.../index.md

19 lines
445 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Split a String into an Array Using the split Method
---
## Split a String into an Array Using the split Method
### Method
Simply split the string to create a new array of words.
A simple regular expression can be used to achieve this result.
### Solution
```javascript
function splitify(str) {
// Add your code below this line
return str.split(/\W/);
// Add your code above this line
}
splitify("Hello World,I-am code");
```