Use the split() method of a string instance. It accepts an argument we can use to cut the string when we have a space:
const text = "Hello World! Hey, hello!"
text.split(" ")
The result is an array. In this case, an array with 4 items:
[ 'Hello', 'World!', 'Hey,', 'hello!' ]
Download my free JavaScript Beginner's Handbook and check out my JavaScript Course!
More js tutorials:
- Parcel, how to fix the `regeneratorRuntime is not defined` error
- JavaScript Functions
- JavaScript Exceptions
- JavaScript Statements
- The String charAt() method
- JavaScript Algorithms: Merge Sort
- The Object is() method
- The Number isSafeInteger() method
- JavaScript Internationalization