DEV Community

Cover image for let var const - variables in js
Manikandan K
Manikandan K

Posted on • Updated on

let var const - variables in js

Variable

  • variables are lable that references a value.
  • variables are used to store information to be reference and manipulated in a computer program.
  • variables holds information/data.
  • storing information.
let name = 'Manikandan';
    let        -> start with  //(let, var, const)
    name       -> variable identifier
    Manikandan -> information/data
    ;          -> end of the statement

Enter fullscreen mode Exit fullscreen mode

var

  • var is function-scope.

Image description

  • Variables defined with 'var', redeclare and reassign is possible.

Image description

Image description

let

  • let is block-scope

  • Some lines of code will written in { } these parentheses, it

  • is called block-scope.

  • block-scope Variable cannot be access outside the block.

Image description

  • Variables defined with 'let', must be declare before use/assign value.
  • Once declare a Variable with 'let', after re-assign is possible but redeclare is impossible.

Image description

const

  • const is block-scope.
  • variable define with 'const', cannot be redeclare and cannot be reassign.

Image description

Latest comments (0)