DEV Community

Discussion on: Demystifying Var, Let, and Const

Collapse
 
promikecoder2020 profile image
ProMikeCoder2020

Some other differences:

  • Var declaration are hoisted unlike let and const declarations
  • Unlike var you can't redeclare let or const declarations(altought you can reassign let declarations)