Skip to content

Files

Latest commit

 

History

History
14 lines (9 loc) · 447 Bytes

no-string-based-set-interval.md

File metadata and controls

14 lines (9 loc) · 447 Bytes

Pattern: Use of string-based setInterval

Issue: -

Description

Do not use the version of setInterval that accepts code as a string argument. However, it is acceptable to use the version of setInterval where a direct reference to a function is provided as the callback argument.

Further Reading