_sortieren

117 bookmarks
Custom sorting
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
The Framework Field Guide
The Framework Field Guide
A practical and free way to teach Angular, React, and Vue all at once, so you can choose the right tool for the job and learn the underlying concepts in depth.
·unicorn-utterances.com·
The Framework Field Guide
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
uhtml
uhtml
A micro HTML/SVG render
·webreflection.github.io·
uhtml
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
Arrow function expressions - JavaScript | MDN
Arrow function expressions - JavaScript | MDN
An arrow function expression is a compact alternative to a traditional function expression, with some semantic differences and deliberate limitations in usage:
·developer.mozilla.org·
Arrow function expressions - JavaScript | MDN
Syntax Highlighting with no spans?!
Syntax Highlighting with no spans?!
When I think of showing off syntax highlighted code on the web, I think of code that takes in a string of code, finds relevant substrings (tokens) with elaborate RegExes, then wraps them in spa…
·frontendmasters.com·
Syntax Highlighting with no spans?!
How to create your own CodePen clone with vanilla JavaScript
How to create your own CodePen clone with vanilla JavaScript
I’m working on a new project-based JavaScript course for beginners and aspiring developers. In addition to a ton of projects, I wanted to include little mini-challenges with each lesson. And to do that, I want to include a code sandbox (like CodePen) right in the tutorial. Rather than loading buckets of React like most libraries for this require, I decided to build my own. Let’s look at how! An example challenge For example, imagine that you’ve just learned about the Array.
·gomakethings.com·
How to create your own CodePen clone with vanilla JavaScript
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
JavaScript Module Systems - iO tech_hub
JavaScript Module Systems - iO tech_hub
In this article, we are going to talk about different JS module systems, such as CommonJs, AMD, UMD, and ES Modules.
·techhub.iodigital.com·
JavaScript Module Systems - iO tech_hub