title: "Weekly of Weekly (Issue 0)"
date: 2023-09-17 00:56:23
tags:
- Programming
- Newsletter
- Weekly
Series Begins#
While surfing the internet, I subscribed to many newsletters. However, I often forget the content after reading them. So, I decided to start recording my weekly newsletter readings. This way, I can also write a blog post every week (laughs).
JavaScript#
-
Why Does every() Return true for Empty Arrays? (Approximately takes less than ten minutes)
This short and concise article mainly discusses the behavior of Array.prototype.every() on empty arrays. The article explains its behavior on empty arrays through the equivalent JavaScript code of every(). It also provides a mathematical explanation for why it is designed this way.
-
javascript array grouping methods (Approximately takes less than ten minutes)
This article talks about the groupby method, which is still in stage 3. Of course, you can currently use lodash to meet the same requirements.
-
No explanation needed. Bun, which has been popular in the past two weeks. Perhaps we can expect what kind of impact bun will bring to the entire ecosystem.
Haskell#
-
UK air traffic control meltdown
Analyzes a T0-level incident in the UK air traffic control system, but the code examples are implemented in Haskell. This article is quite long and may take about an hour to read. But personally, I feel it is worth reading.