0
what is pascal case and what is camel case ?
3 ответов
+ 3
Pascal case: MyVariable
Camel case: myVariable
0
Pascal gets all first letter in caps. camel gets first one lowercase then all in caps. MyVariable and myVariable
0
Pascal and Camel case are variable naming rules which improves code readability for you and other programmers or people reading your code. They are all fine to use, you can choose the one which bests suits you.