Most Powerful Open Source ERP

Guideline Method Name Is Camelcase Starting With Lowercase Letter

Consistency across languages
  • Last Update:2017-04-05
  • Version:001
  • Language:en

Method Name Is Camelcase Starting With Lowercase Letter

A method/function should always start with a small letter.

Good Example:

function myFunction() {...}

Bad Example:

function MyFunction() {...}