Dark mode
Category | Naming Rule | Usage Example | Notes |
---|---|---|---|
Variables | camelCase | let userName = '' | ใช้สำหรับตัวแปรทั่วไป |
Functions | camelCase | getUserData() | ควรเป็นคำกริยา |
Constants | UPPER_CASE | MAX_SIZE = 100 | ใช้สำหรับค่าคงที่ |
Classes | PascalCase | class UserModel | ใช้ PascalCase ทั้งชื่อ class และ constructor |
Private | _underscore | _internalMethod() | ควรใช้ภายในเท่านั้น |
Modules | camelCase | userService.js | ไฟล์ module ใช้ camelCase |