DEV Community

Discussion on: # 5 Tips for better code readability

Collapse
 
pujansrt profile image
Pujan Srivastava

In the naming convention, whenever I use boolean variable I prefer to prefix is, has, can. For example

const isPerson : boolean = true;
const hasAge : boolean = true;
const canDance : boolean = true;

Collapse
 
davidlambauer profile image
David Lambauer

Good one! Added it to the post. Thanks