codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Member-only story

Using var, let, and const appropriately in JavaScript

Harsha Vardhan
codeburst
Published in
3 min readOct 8, 2020

Image from Tutorial Republic

Though most of the JavaScript developers have used all these keywords, it’s good to know how they work. In this article, we will discuss var, let and const in detail with respect to their scope, use, and hoisting. At the end of the article, I’ll provide a cheat sheet as well.

var

Whenever a variable is declared using a var keyword, the variables are:

  • Function scoped or globally scoped
  • Re-assignable and re-declarable
  • Not subject to the temporal dead zone

Function scoped or globally scoped

When a variable is declared within a function using var, the variable is scoped to the function. But, when the variable is declared outside a function or block, then the global variable has a global scope. In addition, it also creates a global property on the window object, with the same name.

var language = "JavaScript";function foo() {
var language = "Python";
framework = "React";
console.log(language);
}
foo(); // "Python"console.log(language); // "JavaScript"console.log(window.language); // "JavaScript"console.log(window.framework); // "React"

It also has to be noted that variables declared without any statement become a global variable by default. If you’d like to avoid this behavior then you can use strict mode in JavaScript by adding "use strict"; at the beginning of the file.

Re-assignable and re-declarable

Variables declared with var can be reassigned and re-declared later in the code.

var language = "JavaScript";
var language = "Python"; // Re-declaration
console.log(language); // "Python"
language = "Java"; // Reassignment
console.log(language); // "Java"

Hoisting

Hoisting in JavaScript is a mechanism whereby variables and function declarations are moved to the top of their scope before code execution. var variables are hoisted to the top of their scope and initialized with a value of undefined.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Harsha Vardhan

Engineer, Photographer, Tech Blogger. Builds products and writes for developers. I love to code and love to help others code :)

Responses (1)

Write a response