java-script:immutability
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
java-script:immutability [2023/08/07 18:56] – odefta | java-script:immutability [2023/08/11 12:17] (current) – [3. Immutable.js] odefta | ||
---|---|---|---|
Line 3: | Line 3: | ||
Ensuring immutability in JavaScript means **creating objects and values that cannot be changed once they are created.** \\ While JavaScript does not have built-in support for immutability in the way that some other languages do, there are several practices and libraries that you can use to achieve this goal. | Ensuring immutability in JavaScript means **creating objects and values that cannot be changed once they are created.** \\ While JavaScript does not have built-in support for immutability in the way that some other languages do, there are several practices and libraries that you can use to achieve this goal. | ||
- | ===== Using const for Variables ===== | + | ===== 1. Using const for Variables ===== |
Declaring variables with const ensures that the variable itself cannot be reassigned, but if the variable is an object or an array, its contents can still be changed: <code javascript> | Declaring variables with const ensures that the variable itself cannot be reassigned, but if the variable is an object or an array, its contents can still be changed: <code javascript> | ||
Line 10: | Line 10: | ||
</ | </ | ||
- | ===== Object.freeze ===== | + | ===== 2. Object.freeze ===== |
You can use **Object.freeze()** to make an object immutable. \\ It prevents new properties from being added to the object, existing properties from being removed, and it prevents changing the enumerability, | You can use **Object.freeze()** to make an object immutable. \\ It prevents new properties from being added to the object, existing properties from being removed, and it prevents changing the enumerability, | ||
Object.freeze(obj); | Object.freeze(obj); | ||
obj.x = 10; // Will have no effect </ | obj.x = 10; // Will have no effect </ | ||
- | < | + | < |
- | ===== Immutable.js ===== | + | In **strict mode**, **obj.x |
+ | </ | ||
+ | |||
+ | ===== 3. Immutable.js ===== | ||
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. | ||
- | ===== Functional Programming Techniques ===== | + | < |
+ | |||
+ | < | ||
+ | **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. | ||
+ | </ | ||
+ | |||
+ | ===== 4. Functional Programming Techniques ===== | ||
Using functional programming practices such as avoiding side effects and using pure functions can help ensure immutability. By always returning new objects and never modifying input parameters, you can create a more predictable and maintainable codebase. | Using functional programming practices such as avoiding side effects and using pure functions can help ensure immutability. By always returning new objects and never modifying input parameters, you can create a more predictable and maintainable codebase. | ||
- | ===== Deep Copying ===== | + | ===== 5. Deep Copying ===== |
Creating deep copies of objects ensures that you're working with a completely separate copy and not a reference to the original object. Be cautious, though, as deep copying can be computationally expensive. | Creating deep copies of objects ensures that you're working with a completely separate copy and not a reference to the original object. Be cautious, though, as deep copying can be computationally expensive. | ||
- | ===== Using TypeScript ===== | + | ===== 6. Using TypeScript ===== |
TypeScript can allow you to define read-only properties and provide compile-time checks for immutability: | TypeScript can allow you to define read-only properties and provide compile-time checks for immutability: | ||
Line 37: | Line 46: | ||
</ | </ | ||
- | ===== Using ESLint ===== | + | ===== 7. Using ESLint ===== |
ESLint can help ensure immutability in JavaScript by providing linting rules that enforce certain coding practices related to immutability. \\ Here are some ways ESLint can be used for this purpose. | ESLint can help ensure immutability in JavaScript by providing linting rules that enforce certain coding practices related to immutability. \\ Here are some ways ESLint can be used for this purpose. | ||
- | ==== Using Built-in Rules ==== | + | ==== 7.1 Using Built-in Rules ==== |
* **prefer-const**: | * **prefer-const**: | ||
* **no-var**: This rule requires **let** or **const** instead of **var**, encouraging block scoping and potentially more predictable behavior. | * **no-var**: This rule requires **let** or **const** instead of **var**, encouraging block scoping and potentially more predictable behavior. | ||
- | ==== Plugins and Custom Rules ==== | + | ==== 7.2 Plugins and Custom Rules ==== |
There are ESLint plugins specifically designed to enforce immutability, | There are ESLint plugins specifically designed to enforce immutability, | ||
Line 52: | Line 61: | ||
* **immutable/ | * **immutable/ | ||
- | ==== Combining with Other Tools ==== | + | ==== 7.3 Combining with Other Tools ==== |
ESLint can be used in combination with tools like TypeScript, which can enforce immutability through type annotations. ESLint has good integration with TypeScript, allowing you to lint TypeScript code and enforce practices like using **readonly** for properties. | ESLint can be used in combination with tools like TypeScript, which can enforce immutability through type annotations. ESLint has good integration with TypeScript, allowing you to lint TypeScript code and enforce practices like using **readonly** for properties. | ||
- | ==== Custom Configuration ==== | + | ==== 7.4 Custom Configuration ==== |
You can customize ESLint rules and create your own rules to enforce specific immutability patterns within your project. | You can customize ESLint rules and create your own rules to enforce specific immutability patterns within your project. |
java-script/immutability.1691423779.txt.gz · Last modified: 2023/08/07 18:56 by odefta