Naming Conventions

Naming Conventions is very important for any application for better readability of  code.

What is Naming Convention ?  Naming conventions are general rules applied when creating text scripts for software programming. They have many different purposes, such as adding clarity and uniformity to scripts, readability for third-party applications, and functionality in certain languages and applications. They range from capitalization and punctuation to adding symbols and identifiers to signify certain functions.

Advantages of Naming Conventions are :

1. Consistency
2. Better understanding the code
3. Readability
4. Automation

Types of Naming Conventions: 

1. camelCase : First letter should be lower case.
2. PascalCase :  All words should be upper case.
3. kebab-case : Use dash symbol between word to word with lower case.
4. snake_case : Use underscore symbol between word to word with lower case.




How and where these naming conventions will use ? Please check this post Angular Coding Style Part 1

Comments

Popular posts from this blog

Create Custom Form Control for ng-select in Angular

Send API POST Request in MS SQL Server

Restrict Special Characters Using JavaScript By Copy,Paste

Restrict Special Characters in Windows Application using c#

Delete Empty Rows or Null Rows in Datatable in C#

Angular CLI Commands - Cheat Sheet

Difference of High-Level Design (HLD) and Low-Level Design (LLD)

Clean Architecture in a C#