Fix dates in js var let const

This commit is contained in:
Chalarangelo
2021-12-02 10:22:07 +02:00
parent a0273d8df2
commit 22d20eae70

View File

@ -5,7 +5,8 @@ tags: javascript,type,variable
authors: chalarangelo
cover: blog_images/highlands.jpg
excerpt: JavaScript variables can be declared a handful of ways. However, they're not all created equal and understanding their differences can drastically change the way you code.
firstSeen: 2021-12-02T09:50:42-04:00
firstSeen: 2021-09-19T05:00:00-04:00
lastUpdated: 2021-12-02T09:50:42-04:00
---
JavaScript has three variable declaration statements: `var`, `let` and `const`. The latter two were added in ES6, whereas `var` existed since previous versions. One of the first things to notice is that `const` defines constants (i.e. values that will not be reassigned), whereas `var` and `let` define variables. Yet, `var` behaves differently from both `let` and `const` in various other ways.