JavaScript ES6: const and let
In JavaScript ES6, const and let are introduced as replacements for var. A lot of the other ES6 features help us write much less code but this time, that’s not the case. Replacing var with const/let is all about increasing clarity in your code and by the end of this article, I’m hoping I will have convinced you to never use var again!
What are const and let
- Const is the keyword used to declare a variable where we expect that the value will never change.
- Let is the keyword used to declare a variable where we expect that the value will change at some point in the future.
So let’s have a look at an example. In the ES5 code below we have a few variables describing a person where we would use var to declare all the variables.
// ES5
var name = 'Billy';
var dob = '01/01/1990';
var age = 30;
var occupation = 'Web Developer';
In JavaScript ES6, whenever you write a variable you are going to ask yourself “Will this variable ever need to be changed at some point in the future?”.
For our first variable, name, we’d expect that it is extremely unlikely that someone’s name will change. Since we expect the value for name will never change, we would use const instead of var.
For the dob variable, the person’s date of birth will never change so we’ll use const again.
For age, we can see that Billy is currently 30 years old and we know that next year Billy will be 31. Since we expect the age variable to change we’ll use let.
Billy’s current occupation is a Web Developer. If Billy stays at his current place of employment we’d hope Billy will eventually be promoted to a Senior Web Developer. So since we expect Billy’s occupation to be updated at some point in the future, we’ll use let.
// ES6
const name = 'Billy'; // Billy will always be called Billy
const dob = '01/01/1990'; // Billy will always be born January 1st, 1990
let age = 30; // Billy will increase in age every year
let occupation = 'Web Developer'; // Billy will be promoted to Senior Web Developer
// A few years later…
// We don’t need to use ‘let’ again once the variable has been declared
age = 34;
occupation = 'Senior Web Developer';
From the code above, we can see that let acts very similar to var as it can be changed over time. However, once a variable has been declared with const we’ll be thrown an error is we try to update that variable.
Why bother using const/let
The use of const and let is a quality of life improvement to your codebase.
It will let future you and other developers to be able to quickly glance at variables and instantly be able to know if those variables will be updated later in the code or will always be the same.
This is particularly important in large JavaScript applications where there are variables being declared all over the place. Instead of hunting down to see if a variable gets used again, you can quickly check if it’s declared using let or const.
Using const can help prevent bugs. In our large JavaScript application, if we have a variable that, if updated, would cause some really weird bugs to occur then we can declare that variable using const. In the future, if someone tried to update that variable they would get an error letting the developer know that they shouldn’t update it!
Continue Reading
-
Creating Interactive Accordions using jQuery
Accordions are useful interface elements that, when clicked, will expand or condense the information on a web page. In this article, I will provide examples on how to create accordions and nested accordions using jQuery, and explain when you might want to use accordions.
-
CodePen Challenge: Contrast
Never lose track of your cursor again! A custom cursor is created using "mix-blend-mode: difference" which will give contrast to any image or element the user mouses over.
-
JavaScript ES6: Template Strings
Template strings (or template literals) don’t offer much in the way of new functionality but instead make some quality of life improvements to our syntax.
-
JavaScript ES6: The map() Helper
The map() helper is used when we want to modify a list of data. When map() is finished running, it creates and populates a new array with the results. Let's see how it works!