variable naming standards
- variable name should be noun.
- It represents values.
- If variable name contains one word then first letter starts with lower case letter.
- If variable name contains more than one word then first letter starts with lower case letter, remaining words starts with upper case letter.
- Tip : Should not give space between the words while naming to variable.
User defined variable names:
- id
- accountNumber
Nireekshan