Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 213 Bytes

no-number-13.md

File metadata and controls

23 lines (13 loc) · 213 Bytes

Forbid the use number 13

The use of the number 13 is a bad omen. Use a different amount.

Fail

const a = 13;
const myVariable13 = (a) => a*2;

Pass

const a = 7;