Deon Slabbertbecomingaprogrammer.hashnode.dev·Dec 4, 2023Database Naming ConventionsNaming conventions are critical in programming and database design as it prevent early death, either by a co-worker or self-inflicted. Giving the necessary attention to naming things appropriately will save you major headaches when it comes to unders...Database Design FundamentalsNaming Conventions
Haneunhanlee.hashnode.dev·Mar 19, 2023Popular Naming Conventions for Variables: Snake Case, Pascal Case, Camel CaseSnake Case var snake_case; The expression style that includes underscores (_) is called snake case, named after the appearance of a snake. Pascal Case var PascalCase; When the first letter and the middle letters are capitalized, it is similar to the ...Programmingprogramming