javascript split words in string code example
Example 1: javascript split sentence into words
// split sentence into words
sentence.split(' '); // split the string on the spaces
Example 2: split text javascript
<p className="text-bold-500 mb-0">{row.BusinessDescription.length > 100 ? `${row.BusinessDescription.slice(0, 100)}...` : row.BusinessDescription}</p>