mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
366 B
13 lines
366 B
4 years ago
|
## Words
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
**Split** the provided variable `sentence` on spaces to create an array of words
|
||
|
that you will assign to a `words` variable that you will declare.
|
||
|
|
||
|
Hint: Check the link below to see what the method split does.
|
||
|
|
||
|
### Notions
|
||
|
|
||
|
- [devdocs.io/javascript/global_objects/string/split](https://devdocs.io/javascript/global_objects/string/split)
|