←back to thread

498 points azhenley | 1 comments | | HN request time: 0.389s | source
Show context
Havoc ◴[] No.45770043[source]
Good point. Had never occurred to me that keeping steps help debug. Obvious in hindsight
replies(1): >>45770089 #
1. Sammi ◴[] No.45770089[source]
For the same reason almost all my functions end with this:

  const result = ... ;
  return result;
I know debuggers can show return values, but that doesn't help when you're just doing a quick console log inspection.