DEV Community

Discussion on: Self-Taught Developer Journal, Day 21: TOP JavaScript Fundamentals Part 1 - Variables

Collapse
 
toddpress profile image
Todd Pressley

I’m “self taught” too, so i can appreciate the difficulty of and dedication that it takes to learn and synthesize content daily. Great article! Keep ‘em coming!

One thing that may be worth exploring or elaborating upon is that const identifiers’ values are still mutable when the type is complex (e.g. array and object)... constant doesn’t mean immutable in these cases.

Collapse
 
jennifertieu profile image
Jennifer Tieu

Thank you! I appreciate you taking the time to read it and leaving feedback. For the constants, I was thinking in terms of basic data type. I'll explore it some more though and update it.