#javascript

[ follow ]
#bot-detection
#cookies
fromRaymondcamden
1 day ago

Links For You (10/12/25)

I feel like this is something that's been shared before, and heck, I've talked about this myself many times as well, but it's a useful reminder that many things we've used JavaScript for in the past are not actually necessary and can be done by simpler, less complex means. Check out "You no longer need JavaScript", a great post focused on CSS improvements primarily but also some relevant HTML features you may not be aware of.
JavaScript
fromTechzine Global
3 days ago

Meta transfers React to Linux Foundation

Meta is transferring React, React Native, and JSX to a new organization: the React Foundation. This foundation will become part of the Linux Foundation. The organization's purpose is to ensure that the development of the popular JavaScript framework is no longer under the direct influence of a single company. React was developed by Facebook in 2013. It has grown to become the most widely used front-end framework for web development.
Web frameworks
JavaScript
fromMedium
3 weeks ago

Python is consistent about modular arithmetic, like Mathematica

Mainstream programming languages' % operator yields negative remainders for negative operands, producing −3 for −3 % 4 instead of the mathematically expected 1.
#html5-canvas
fromO'Reilly Online Learning
6 days ago
JavaScript

Supercharged JavaScript Graphics

Use JavaScript, jQuery, DHTML, and HTML5 Canvas to build high-performance web graphics, games, dashboards, and mobile apps with optimization and advanced UI techniques.
fromO'Reilly Online Learning
1 week ago
JavaScript

Supercharged JavaScript Graphics

JavaScript, jQuery, DHTML, and HTML5 Canvas enable creation of high-performance, cross-platform web and mobile graphics, games, UIs, and interactive dashboards.
fromallthingssmitty.com
1 week ago

How to group arrays in JavaScript without reduce() - Matt Smith

JavaScript now has native support for grouping data with Object.groupBy() and Map.groupBy(). These static methods make grouping expressive, concise, and far more readable, without the need for external libraries or complex reduce() patterns. What are Object.groupBy() and Map.groupBy()? Both of these methods were introduced in ES2024 and allow you to group elements of an array by a key generated from a callback function.
JavaScript
fromSlicker
1 week ago
JavaScript

JavaScript Tutorial on the Fern Fractal (Barnsley Fern)

A simple Iterated Function System of four affine transforms applied randomly with fixed probabilities generates the Barnsley fern's detailed leafy shape.
#software-supply-chain
JavaScript
fromeLearning
2 weeks ago

Beginner JavaScript Tutorial for Adobe Captivate 12 - eLearning

JavaScript can be used in Adobe Captivate 12 to create variables, interactive input fields, and simple scripts to sum user-entered numbers.
Privacy professionals
fromZacks
2 weeks ago

Pardon Our Interruption

Enable cookies and JavaScript and disable or reconfigure blocking extensions to restore access when browsing is flagged as automated or blocked.
Web development
from2ality
2 weeks ago

Learning web development: Creating web pages via HTML

Create web pages with HTML; understand hexadecimal numbers, file paths, and web addresses as foundational knowledge for web development.
Software development
fromAllthingssmitty
3 weeks ago

Stop using .reverse().find(): meet findLast() - Matt Smith

Array.prototype.findLast() and findLastIndex() search arrays from the end without reversing, offering clearer, safer, and more performant code.
#web-development
Online learning
fromeLearning
3 weeks ago

scroll line - eLearning

New Captivate lacks a timeline scrub/scroll control for fine within-slide seeking, unlike Classic where JavaScript enabled back-and-forth few-second navigation.
fromSitePoint Forums | Web Development & Design Community
1 month ago

Need to access all but current button in a grid array of buttons

I'm new here and fairly new to JavaScript, so please bear with me. I've been converting a working python program to JavaScript with varying degrees of success. It's a fairly simple 8x8 button panel that modifies the button text when toggled. So far that works. However, some of the buttons are in "groups" that work like a mechanical switch that clears the other buttons in the group when a new one is selected.
JavaScript
JavaScript
fromInfoWorld
1 month ago

9 vital concepts of modern JavaScript

Mastering modern JavaScript fundamentals—variables, collections, arrow functions, scope, and closures—enables confident work across client and server JavaScript ecosystems.
JavaScript
from2ality
1 month ago

Learning web development: Frontend frameworks

Use non-destructive JavaScript array and object operations and Preact to build frontend UI state safely without mutating original data structures.
fromAllthingssmitty
1 month ago

Finally, safe array methods in JavaScript - Matt Smith

There's a good reason that many developers pause before using .sort(), .reverse(), or .splice() in JavaScript: those methods mutate the original array. That single side effect can lead to subtle, hard-to-trace bugs, especially in apps with shared or reactive state. The good news is that in the last couple of years we've gotten new array methods that make working with arrays safer and cleaner by avoiding mutation altogether: These return copies instead of changing the original array.
JavaScript
[ Load more ]