正在加载视频...
视频加载失败
In TypeScript, there are at least 4 ways to implement immutability. Here's how I choose between them.
10 条评论

Georg Unterholzner1 年前
Very well explained, Cory!

lazy_coder1 年前
Question: At what point in the development cycle do you begin to worry about immutability? For solo or very small teams focused on deploying asap should this be a priority?

Tanguy Krotoff1 年前
Fully-typed and fully-tested deepFreeze:

𝕃𝕏𝔼1 年前
we need a 5th way

Cory House1 年前
I’m likely forgetting at least two

aiiiden 💫💖1 年前
@ezdubs_bot english to japanese

Nitesh ₿⚡️1 年前
Only in JavaScript, we declare something as const but then add an `as const` at the end of it to say, please remain immutable.

Oliver1 年前
So how would you choose between the typescript versions? Mainly when to use `as const` vs `readonly/ReadOnly`

Cory House1 年前
readonly is the only granular option. Otherwise I generally prefer “as const”

Cory House1 年前
Full course with a 20% discount:


