Let and Const in JavaScript
Let's learn about let and const variables
Before ES6, the only way you can create a variable in javascript was by using the var keyword:
var x = 10;
Since ES6, there are two new keywords, let and const. Below is an example to show their usage:
let...
negi.hashnode.dev3 min read