Implement `isEmail(s)` returning whether `s` looks like `[email protected]` (no spaces, exactly one at-sign, and a dot in the host part).
+ 1 hidden test run on Submit.
The anchored pattern enforces [email protected] shape without spaces, good enough for basic validation.
Run your code to see results.