Follow JavaScript naming conventions:
// Variables and functions: camelCase
const userName = 'Alice';
function getUserById() {}
// Classes: PascalCase
class UserAccount {}
// Constants: UPPER_SNAKE_CASE
const MAX_RETRY_COUNT = 3;
Consistent naming makes code predictable.