# JavaScript String split() Method (OK)

```
var someString = "Hello, how are you today?";
  var words = someString.split(/,\s*/); 
  // Mẫu cấu phẩu khoản trắng nếu nó
  console.log(words);
  ["Hello", "how are you today?"]
```
