🧵 JavaScript strings are "passed by value" — but that doesn't mean the engine is copying megabytes of text on every assignment. It's a subtle distinction worth understanding. When you write: ```js ...
🚀 JAVASCRIPT MYTH: const means "completely immutable" 🚀 Many developers starting with JavaScript assume that declaring an array with const locks it down completely. Then, they run a line like arr [1 ...