Introduction
簡介幾種常見的的命名法
Conetent
駝峰式(Camel Case)
命名方式為單字的首字母大寫,又可以分為大駝峰(upper camel case)與小駝峰(lower camel case)
小駝峰(lower camel case)
第一個單字的首字母小寫,其餘單字首字母大寫
例如:firstName、userPhone大駝峰(upper camel case,Pascal Case)
第一個單字的首字母大寫,其餘單字首字母大寫
例如:FirstName、UserPhone
Snake Case
單字與單字間使用下劃線分隔
例如:first_name、user_phone
kebab Case(spinal-case,Train-Case,Lisp-case)
單字與單字間使用連接符號,有多種稱呼
例如:first-name、user-phone
Reference
有興趣的可以觀看 Wiki Naming Convention 裡面有介紹一些各種語言的習慣使用方式等等。