Use const and let in Javascript instead of var
Jan 3, 2021 · 4 min read · Summary Basically there is no reason to use var and it is considered bad practice. Only use const and let. A good video is on this topic is: https://laracasts.com/series/es6-cliffsnotes/episodes/3?autoplay=true Scope differences Variables declare...
Join discussion