Use Descriptive Names

Variable names should clearly describe their purpose.

Preview

Code

<script>
let totalPrice = 100;
let taxAmount = 20;

let finalPrice = totalPrice + taxAmount;

console.log(finalPrice);
</script>

More JS Conventions Examples (7)