Use camelCase for variables and functions:
let userName = "Alice"
let totalPrice = 99.50
function calculateTax(amount) { }
Start with a lowercase letter. Each new word starts with uppercase. Avoid abbreviations unless they're common (like url or id). Names should describe what they hold or do. calculateTax is better than calc or ct. Clear names reduce the need for comments.