TypeScript tip: Variable names and type names should typically correspond
TypeScript tip:
Variable names and type names should typically correspond.
If the variable's name doesn't look like it "fits" with the type, ask:
- Could the variable's name be improved?
- Is the right type is being applied?
#typescript
