Split string into as words array
将字符串拆分为单词数组
the string to split 要拆分的字符串
an array of words 单词数组
words('helloWorld🚀') // => ['hello', 'world', '🚀'] Copy
words('helloWorld🚀') // => ['hello', 'world', '🚀']
Split string into as words array
将字符串拆分为单词数组