Mar 22, 2024 · 2 min read · 1) How to Declare the variables in JS ? We use var, let, const keyword before declaring a variable. Avoid using var because of issue in block scope and functional scope. JS is kind enough to declare variable without keywords but it's not a best pract...
Join discussion