https://github.com/meibraransari/variable_casing
✨ Variable Casing
https://github.com/meibraransari/variable_casing
variable variables
Last synced: 11 months ago
JSON representation
✨ Variable Casing
- Host: GitHub
- URL: https://github.com/meibraransari/variable_casing
- Owner: meibraransari
- Created: 2024-06-29T17:19:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-27T08:46:23.000Z (over 1 year ago)
- Last Synced: 2024-12-30T20:15:24.532Z (about 1 year ago)
- Topics: variable, variables
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
---
Created: 2024-07-27T14:15:12+05:30
Updated: 2024-07-27T14:15:38+05:30
Maintainer: Ibrar Ansari
---
# Variable_Casing
## Note: Always use variables in lower case in programming.
# Snake Case:
```
Snake case separates each word with an underscore character (_).
When using snake case, all letters need to be lowercase.
number_of_donuts = 34
fave_phrase = "Hello World"
```
# Kebab Case:
```
The kebab case is very similar to snake case.
The difference between snake case and kebab case is that kebab case separates each word with a dash character, -, instead of an underscore.
number-of-donuts = 34
fave-phrase = "Hello World"
```
# Camel Case:
```
When using camel case, you start by making the first word lowercase. Then, you capitalize the first letter of each word that follows.
numberOfDonuts = 34
favePhrase = "Hello World"
```
# Pascal Case:
```
Pascal case is similar to camel case.
The only difference between the two is that pascal case requires the first letter of the first word to also be capitalized.
NumberOfDonuts = 34
FavePhrase = "Hello World"
```
### 💼 Connect with me 👇👇 😊
- 🔥 [**Youtube**](https://www.youtube.com/@DevOpsinAction?sub_confirmation=1)
- ✍ [**Blog**](https://ibraransari.blogspot.com/)
- 💼 [**LinkedIn**](https://www.linkedin.com/in/ansariibrar/)
- 👨💻 [**Github**](https://github.com/meibraransari?tab=repositories)
- 💬 [**Telegram**](https://t.me/DevOpsinActionTelegram)
- 🐳 [**Docker**](https://hub.docker.com/u/ibraransaridocker)