What is the difference between var
, let
, and const
?
codification school Changed status to publish November 29, 2024
var
: Function-scoped, can be re-declared and updated.let
: Block-scoped, cannot be re-declared but can be updated.const
: Block-scoped, cannot be re-declared or updated.
var x = 10; // Function-scoped let y = 20; // Block-scoped const z = 30; // Block-scoped and constant
codification school Changed status to publish November 29, 2024