Implement `countWords(s)` returning the number of word tokens in `s`, matching runs of word characters.
+ 1 hidden test run on Submit.
Matching /\b\w+\b/g counts word tokens regardless of punctuation.
Run your code to see results.