🔒The const keyword is used to define variables that cannot be reassigned.
🔑The let keyword is used to define variables that are block-scoped and can be reassigned.
🌟The var keyword is used to define variables that are function-scoped and can be accessed before they are defined.
⏲️Variables defined with const and let have temporal dead zones and cannot be accessed before they are declared.
🧩const should be used for values that never change, let for block-level variables, and var for function-level variables.