DEV Community

Discussion on: Var, let and const- what's the difference?

Collapse
 
chetanupreti profile image
chetanupreti

let me clear about const.

const used when we don't want to reinitialize the variable values.

like

const a=[2,3,4];

a[1]++; //doesn't give error;

a=[3,4]; //give error;

that's about const.