DEV Community

HandsomeTan
HandsomeTan

Posted on

Javascript - difference between var, let, and const

In the early days, var keyword is used usually to define a variable, but it would bring some troubles, such as variable obfuscation and memory leaks about variable, firstly, let's learn about variable scope in Javascript:
there are only global and local scopes in Javscript before ES6 and thease are distinguished by function region. variables defined within a function are local and external variables are global. Variables defined by var are declared at the top of their scope in advance and assigned the value underfined regardless of where they are declared. Finally, variable lookup is bottom-up, so variables within a function cannot be accessed by the functions.

After ES6, let and const keyword appeared while block scope was introduced. Block scope is differentiated by { }, so if, for, while, etc all have their own block scope, but must use let, const keyword declared variables and var hasn't block scope yet. At the same time, let, const haven't also hoisted-variable as var do.

SurveyJS custom survey software

Simplify data collection in your JS app with a fully integrated form management platform. Includes support for custom question types, skip logic, integrated CCS editor, PDF export, real-time analytics & more. Integrates with any backend system, giving you full control over your data and no user limits.

Learn more

Top comments (0)

Image of Docusign

🛠️ Bring your solution into Docusign. Reach over 1.6M customers.

Docusign is now extensible. Overcome challenges with disconnected products and inaccessible data by bringing your solutions into Docusign and publishing to 1.6M customers in the App Center.

Learn more