JavaScript keeps evolving every day, and there are many proposals currently in the pipeline that are going to make JavaScript even more awesome! 🔥

We'll take a look at one proposal that is currently in stage 2 and is going to bring native immutability to JS!

🧵⏬
1️⃣ The Records & Tuple Proposal

This proposal introduces two new types to JavaScript, namely Record and Tuple.

They are designed as compound primitives that can contain other (compound) primitives.

⛓ https://github.com/tc39/proposal-record-tuple
They are both deeply immutable, so you no longer need to Object .freeze() your objects or use libraries like Immutable .js to gain unchangeable objects, and do you know what's even more awesome?

You can compare them with the strict equality comparison (===), ...
... which negates the need for library functionality like deepEquals to check if two objects are the same.
2️⃣ Records

Records are immutable objects. They can contain other primitive types, but no plain Objects (which are mutable again).

To create one, you combine the syntax of private class fields and the object-creation shorthand syntax.
Nesting a mutable object results in a TypeError.

You can also create Records from plain Objects by using the new constructor function Record().
All methods you'd usually use with Objects are applicable to Records.

You can log them, use a for..of-loop, or destructure them.
And the greatest addition Records bring with them is the ability to use the strict equality comparison to compare them.

If you've ever written a deepEquals() function you'll know that this is to be valued really really high, as it saves developers a lot of time.
And lastly, Records can be converted back to mutable Objects whenever you want to.
3️⃣ Tuples

Tuples are immutable array-like structures. They can, like Records, only contain other (compound) primitives.

You couldn't nest an Array or an Object within a Tuple, e.g. That would result in a TypeError.
Tuples bring with them all methods you know from Arrays already, except those that would alter its contents.

But besides that, you can use them like you usually would.
Of course, Array destructuring also works with tuples, and spreading, too!
You can also use all forms of loops with Tuples like you usually would and use the strict equality comparison to compare two Tuples.
And now, before you think that it's a little difficult to add an element to a Tuple and create a new Tuple, to keep it immutable, there's a method that does exactly that!
4️⃣ JSON Support

The proposal currently suggests adding a new method to JSON, namely JSON .parseImmutable() that creates a Record or Tuple out of a JSON string and not plain mutable Objects or Arrays.
5️⃣ What Is The Real Benefit Of Tuples And Records?

Well, there is more than one benefit you can get from those two new types.

First of all: Built-in immutability. No longer do you need a library or Object .freeze to prevent mutation of your Objects.
The next benefit is that both of them are usable as Map keys and Set values, as they are strictly comparable.

Until now it never really worked to use a plain Object or an Array as a key. Even if it somehow worked, the Objects could be mutated while being set as a ...
... key, which could lead to very strange effects occuring.

Immutable types can't be changed and thus give guarantees to make them a valuable choice for Map keys or Set values.
6️⃣ Before You Leave

If you liked this thread, a like would mean the world to me. Retweets are appreciated if your audience also likes this type of content. 😊

And if you want to see more content like this regularly, feel free to follow me for more! 💛🙏🏻
You can follow @oliverjumpertz.
Tip: mention @twtextapp on a Twitter thread with the keyword “unroll” to get a link to it.

Latest Threads Unrolled: