By Alligator
Two new keywords are available in ES6 / ES2015 to declare variables in JavaScript: let and const. Contrary to var, let and const are block-scoped.
Var has an issue where it’s not block-scoped, which can lead to surprises:
var dog = 'Ralf';
if (true) {
var dog = 'Skip';
}
console.log(dog); // Skip
Compare this to using let:
let dog = 'Ralf';
if (true) {
let dog = 'Skip';
}
console.log(dog); // Ralf
Var is properly function-scoped, meaning that the issue doesn’t happen in functions, but in blocks like if or for all bets are off and variables declared with var get hoisted to the parent scope.
With const you can define immutable variables (constants). Trying to re-assign a constant will raise an error:
const PI = 3.1415;
PI = 5; // "TypeError: Assignment to constant variable.
Be careful however, new items can still be pushed into an array constant or added to an object. The following 2 snippets work without complaining because we are not trying to reassign to the variables:
const someArr = [3, 4, 5];
someArr.push(6);
const someObj = {
dog: 'Skip',
cat: 'Caramel',
bird: 'Jack'
};
someObj.camel = 'Bob';
Many developers now agree that there’s not a very strong case for using var at all anymore and that using let should be the way to go forward.
In short, use let!
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
Alligator.io is a developer-focused resource that offers tutorials and insights on a wide range of modern front-end technologies, including Angular 2+, Vue.js, React, TypeScript, Ionic, and JavaScript.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.