Good point. Had never occurred to me that keeping steps help debug. Obvious in hindsight
For the same reason almost all my functions end with this:
const result = ... ; return result;
For the same reason almost all my functions end with this:
I know debuggers can show return values, but that doesn't help when you're just doing a quick console log inspection.