

Hasty Treat - Records and Tuples in JavaScript
source link: https://syntax.fm/show/287/hasty-treat-records-and-tuples-in-javascript
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Sep 28th, 2020
Hasty Treat - Records and Tuples in JavaScript
👇 Download Show✏️ Edit Show NotesIn this Hasty Treat, Scott and Wes talk about records and tuples in javascript — what they are, why you might want to use them, and more!
LogRocket - Sponsor
LogRocket lets you replay what users do on your site, helping you reproduce bugs and fix issues faster. It's an exception tracker, a session re-player and a performance monitor. Get 14 days free at logrocket.com/syntax.
Show Notes
02:42 - Immutability
05:08 - Records
- Immutable object
- Syntax
#{x: 1, y: 2}
05:56 - Tuples
- Immutable array
- Syntax
#[1,2,3,4]
07:18 - For both
- Referred to as a compound primitive
- Can contain only primitives, not objects
They are compared deeply by their contents rather than their identity
assert(#{ a: 1 } === #{ a: 1 }); assert(#[1, 2] === #[1, 2]); assert(#{ a: 1, b: 2 } === #{ b: 2, a: 1 });
Potential for optimizations
- Optimizations for making deep equality checks fast
- Optimizations for manipulating data structures
- Works well with type systems
- Better integration with the debugger
- Accessed through normal record.scott object like syntax
13:39 - Stage 2
Links
Tweet us your tasty treats!
Recommend
-
9
Nov 2nd, 2020Hasty Treat - Certifications? Government Specified JavaScript Skills?👇 Download Show
-
12
Jun 7th, 2021Hasty Treat - Making a Vaccine Bot with JavaScript👇 Download Show✏...
-
12
✏️ Edit Show NotesIn this Hasty Treat, Scott and Wes talk about JavaScript's drag and drop API — how it works, concerns, best practices, and more!...
-
7
May 4th, 2020Hasty Treat - Things You Should Know About Javascript Events👇 Download Show
-
6
Jun 10th, 2019Hasty Treat - Std Lib in JavaScript👇 Download Show✏️ Edit Show Notes
-
9
Oct 26th, 2020Hasty Treat - Temporal Date Objects in JavaScript👇 Download Show
-
4
Jul 5th, 2021Hasty Treat - JavaScript Event Buzzwords — Sync, Concurrent, Defer, Blocking, Workers👇 Download Show
-
5
精读《Records & Tuples 提案》前端开发话题下的优秀答主immutablejs、immer 等库已经让 js 具备了 immutable 编程的可能性,但还存在一些无解的问题,即 “怎么保...
-
3
精读《Records & Tuples for React》前端开发话题下的优秀答主继前一篇
-
4
0:00 / 46:49 ...
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK