var, let and const in Javascript
var, let and const are the three keywords which is used before variables.
var keyword is used before let and const came into picture.
var is function-scoped. This means whenever a variable is created with var in a function, it will only exist within ...
snehaks.hashnode.dev2 min read