Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 271 Bytes

no-for-in.md

File metadata and controls

11 lines (6 loc) · 271 Bytes

Pattern: Use of for-in statement

Issue: -

Description

Avoid use of for-in statements. They can be replaced by Object.keys.

Further Reading