What const means?

I think it means a constant value.

Const creates a constant value, that cannot be re-assigned after it’s been declared.

1 Like

const prevents writing to the variable after initialization, effectively turning it into a constant (although it’s still technically a variable)

Privacy & Terms