Good Practices & Conventions Javascript

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