Fixed function name

This commit is contained in:
Arjun Mahishi
2017-12-20 00:30:10 +05:30
parent a4d9656df1
commit 7d8f1c97e3

View File

@ -5,7 +5,7 @@ Converts a given string into an array of words
First create an array of dirt that you want to remove from the string. Then replace each dirt with an empty string. Use `String.split(' ')` to conver the string to an array with the space as a delimiter.
```js
const stringToArray = str =>{
const stringToArrayOfWords = str =>{
[".", ",", "?", "!", "& ", "(", ")", "[", "]"].map(d => str = str.replace(d, ""));
return str.split(" ");
}