Junior JavaScript

What is the difference between var, let, and const?

Keyword Scope Re-declar

Re-assig

Hoisted?

var Functio

✅ Yes ✅ Yes ✅ Yes (undefined)

let Block ❌ No ✅ Yes 🚫 Temporarily dead

zone

const Block ❌ No ❌ No 🚫 Temporarily dead

zone

Example:

Follow me on LinkedIn:

let x = 10; const y = 20; var z = 30;

More from JavaScript Tutorial

All questions for this course