Good Practices & Conventions Javascript
- Private Variables:
- Names of the private variables should start with
_. - This can be used in closures or in classes.
- e.g
let _counter = 0;
- Names of the private variables should start with
- Constructors:
- Always start with a capital letter
- e.g.
new Error("testing")Error is a constructor