Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 277 Bytes

no-with-statement.md

File metadata and controls

11 lines (6 loc) · 277 Bytes

Pattern: Use of with statement

Issue: -

Description

Do not use with statements. Assign the item to a new variable instead.

Further Reading