Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 286 Bytes

explanitory_vars.md

File metadata and controls

21 lines (15 loc) · 286 Bytes

Use explanatory variables

Bad:

declare const users: Map<string, User>;

for (const keyValue of users) {
  // iterate through users map
}

Good:

declare const users: Map<string, User>;

for (const [id, user] of users) {
  // iterate through users map
}