Implement `hasDigit(s)` returning whether `s` contains at least one digit.
+ 1 hidden test run on Submit.
/\d/.test checks whether any digit appears anywhere in the string.
Run your code to see results.