naming in programming
Class and Method Naming Class name should be a noun (User, Post). Method name should be a verb (create, activate). Class names should always start with an uppercase letter. Variable Names Variables should contain only lowercase letters, and be reasonably named to indicate their purpose and contents. Very short, non-word variables should only be used ... Read more