Differences between var let and const in javascript
What are those var let and const keywords in javascript? Well, they are use to define variables. Lets take every one of them and discuss more: 1. Var This keyword was used from the beginnings of javascript, but it had some weird behaviour. Example: What do you think about the code above? If you are…