method naming standards
- method name should be noun.
- method represent a group of statements which performs action.
- If method name contains one word then first letter starts with lower case letter.
- If method 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 method.
Pre-defined method names:
- char()
- charAt()
- toString()
User defined method names:
- first()
- accountDetails()
Nireekshan