DEV Community

Discussion on: Intro To Functional Programming

Collapse
 
eaich profile image
Eddie

This is a really great summary. Quick question - couldn't objects defined using const still be mutable in a sense if I set a property on it?

Collapse
 
mburszley profile image
Maximilian Burszley

Correct. const in javascript does not mean immutable. It means the identifier can't be re-assigned.