User Tools

Site Tools


java-script:immutability

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
java-script:immutability [2023/08/11 12:08] – [2. Object.freeze] odeftajava-script:immutability [2023/08/11 12:17] (current) – [3. Immutable.js] odefta
Line 23: Line 23:
  
 Libraries such as Immutable.js provide persistent immutable data structures. These are collections that, once created, are never changed. Any modifications to the collection return a new collection that shares as much of the structure with the original as possible, minimizing unnecessary copying. Libraries such as Immutable.js provide persistent immutable data structures. These are collections that, once created, are never changed. Any modifications to the collection return a new collection that shares as much of the structure with the original as possible, minimizing unnecessary copying.
 +
 +<note>**Object.freeze** only makes the object itself immutable, not any nested objects. You would have to recursively freeze nested objects to achieve deep immutability. **Immutable.js**, on the other hand, provides deep immutability out of the box.</note>
 +
 +<note>
 +**Object.freeze** can be slow, especially if used recursively on large objects. **Immutable.js** is optimized for performance and can handle large data structures efficiently.
 +</note>
  
 ===== 4. Functional Programming Techniques ===== ===== 4. Functional Programming Techniques =====
java-script/immutability.1691744900.txt.gz · Last modified: 2023/08/11 12:08 by odefta