TFNFR18 - Variables with Types
ID: TFNFR18 - Category: Code Style - Variables with Types
type MUST be defined for every variable. type SHOULD be as precise as possible. Authors SHOULD NOT use any.
- Use
boolinstead ofstringornumberfortrue/false - Use
stringfor text - Use concrete
objectinstead ofmap(any)