Found 171 bookmarks
Newest
How does the React Compiler perform on real code
How does the React Compiler perform on real code
In the last few years, one of the biggest sources of excitement and anticipation in the React community has been a tool known as React Compiler (previously React Forget). And for a good reason. The central premise of the Compiler is that it will improve the overall performance of our React apps. And
·calendar.perfplanet.com·
How does the React Compiler perform on real code
Statements Vs. Expressions • Josh W. Comeau
Statements Vs. Expressions • Josh W. Comeau
One of the most foundational things to understand about JavaScript is that programs are made up of statements, and statements have slots for expressions. In this blog post, we'll dig into how these two structures work, and see how building an intuition about this can help us solve practical problems.
·joshwcomeau.com·
Statements Vs. Expressions • Josh W. Comeau
The State of ES5 on the Web
The State of ES5 on the Web
Should web developers and JavaScript library authors still transpile their code to ES5? This post looks at what the data suggests based on what popular libraries, tools, and websites are doing
·philipwalton.com·
The State of ES5 on the Web
Promises From The Ground Up
Promises From The Ground Up
The “Promises” API is a surprisingly tricky part of modern JavaScript. Without the right context, it doesn’t make much sense at all! In this tutorial, you’ll build an intuition for how Promises work by getting a deeper understanding of JavaScript and its limitations.
·joshwcomeau.com·
Promises From The Ground Up
Web Frameworks
Web Frameworks
Looking for the best meta web frameworks or static site generators? Our guide will help you choose the right tool for your web development needs.
·bejamas.io·
Web Frameworks
Uniting Web And Native Apps With 4 Unknown JavaScript APIs — Smashing Magazine
Uniting Web And Native Apps With 4 Unknown JavaScript APIs — Smashing Magazine
Have you heard of the Screen Orientation API? What about the Device Orientation API, Vibration API, or the Contact Picker API? Juan Diego Rodriguez is interested in these under-the-radar web features and discusses how they can be used to create more usable and robust progressive web apps if and when they gain broader support.
·smashingmagazine.com·
Uniting Web And Native Apps With 4 Unknown JavaScript APIs — Smashing Magazine
es-toolkit
es-toolkit
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
·es-toolkit.slash.page·
es-toolkit
Welcome, Kevin Powell fans!
Welcome, Kevin Powell fans!
Thanks for watching to me chat with Kevin about JavaScript and more! I’ve put together a ton of resources to help you dig deeper into building simpler, more resilient web experiences. Source Code Different ways to write functions The difference between var, let, and const An into to JavaScript Promises Get Daily Developer Tips Hate the complexity of modern front‑end web development? I send out a short email each weekday on how to build a simpler, more resilient web.
·gomakethings.com·
Welcome, Kevin Powell fans!
Differences between declarative and imperative programming
Differences between declarative and imperative programming
There are two main paradigms in programming: imperative and declarative. Every other paradigm, such as reactive, functional, and procedural, is just a subset of one of these two. Often, you hear that declarative code is better than imperative code an...
·pavel-romanov.com·
Differences between declarative and imperative programming
Learning JavaScript Arrays
Learning JavaScript Arrays
An array is like a queue where you can have zero, one or many values. The first value can be found at index 0, and others follow. An empty array, like a queue with no one in it, is written in JavaScript as `[]`. The `[` and `]` are the start and end markers, and items inside are separated by commas.For example, to make an array with the numbers 0 to 3, you write `[0, 1, 2, 3]`.
·jskatas.org·
Learning JavaScript Arrays