var vs let vs const in JavaScript
May 24, 2021 · 3 min read · Hello Folks! There are mainly 3 keywords that can be used to define a variable in javascript. Let's learn what are the differences between the three of them. Defining Variable JavaScript has three ways to declare variables namely, var, let, and const...
Join discussion