-
Notifications
You must be signed in to change notification settings - Fork 0
Case Style
Jeffrey Sadeli edited this page Aug 11, 2024
·
1 revision
The following table shows the various well known case styles in use today:
| Style | Example | Combines words by ... |
|---|---|---|
| raw | user login count |
|
| camelCase | userLoginCount |
... capitalizing all words following the first word and removing the space. |
| PascalCase | UserLoginCount |
... capitalizing all words (even the first word) and removing the space. |
| snake_case | user_login_count |
... replacing each space with an underscore (_). |
| SNAKE_CASE | USER_LOGIN_COUNT |
... replacing each space with an underscore (_) and all letters are capitalized. |
| kebab-case | user-login-count |
... replacing each space with a dash (-). |
Copyright © PT Samuel Kripto Indonesia. All rights reserved.
- Documentations
- Development Process
- Principles
- Code Convention
- Naming Convention
- Error Message
- Logging
- Release Process