JavaScript
32.2K subscribers
1.08K photos
10 videos
33 files
755 links
A resourceful newsletter featuring the latest and most important news, articles, books and updates in the world of #javascript ๐Ÿš€ Don't miss our Quizzes!

Let's chat: @nairihar
Download Telegram
๐Ÿ‘€ imgui-react-runtime: React + Dear ImGui + Static Hermes

When the author teased a demo of this on X a few weeks ago, I wasnโ€™t sure if it would get released, but here it is. A new way to put together native apps using React and the popular lightweight GUI library Dear ImGui.

Tzvetan Mikov
Please open Telegram to view this post
VIEW IN TELEGRAM
โค4๐Ÿ‘1
๐Ÿ˜ฎ vis-timeline 8.4 โ€“ Interactive control to visualize data across time, as shown above. Numerous examples here.
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ”ฅ4โค2๐Ÿ‘1
๐Ÿ”’ OWASP (Open Worldwide Application Security Project) has released its list of the top ten web application security threats in 2025.
Please open Telegram to view this post
VIEW IN TELEGRAM
โค3๐Ÿ‘2
๐Ÿ“ธ Google Announces Angular v21

The Google team has gone all out with this significant release of its popular JavaScript framework. Theyโ€™ve put together a retro game-themed adventure-based tour of whatโ€™s new, along with top notch videos showing off features like its new signal-based approach to forms, MCP server for AI-powered workflows, library of headless components focused on accessibility, and even a new โ€˜Angular AI Tutorโ€™ to get up to speed.

Google
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘6โค3๐Ÿค”3
๐Ÿ˜†
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿคฃ46๐Ÿ”ฅ2โค1
CHALLENGE

const user = {
profile: {
settings: {
theme: 'dark',
notifications: null
}
}
};

const result1 = user?.profile?.settings?.theme;
const result2 = user?.profile?.settings?.notifications?.email;
const result3 = user?.profile?.preferences?.language ?? 'en';
const result4 = user?.profile?.settings?.notifications?.push?.('test');

console.log(result1, result2, result3, result4);
๐Ÿค”2
โœŒ๏ธ Over 150 Algorithms and Data Structures Demonstrated in JS

Examples of many common algorithms (e.g. bit manipulation, Pascalโ€™s triangle, Hamming distance) and data structures (e.g. linked lists, tries, graphs) with explanations. Available in eighteen other written languages too.

Oleksii Trekhleb et al.
Please open Telegram to view this post
VIEW IN TELEGRAM
โค8
CHALLENGE

const original = {
name: 'Sarah',
hobbies: ['reading', 'coding'],
address: { city: 'Portland', zip: 97201 }
};

const shallow = { ...original };
const deep = JSON.parse(JSON.stringify(original));

shallow.name = 'Emma';
shallow.hobbies.push('hiking');
shallow.address.city = 'Seattle';

deep.hobbies.push('swimming');
deep.address.zip = 98101;

console.log(original.hobbies.length, original.address.city);
โค6๐Ÿค”1
โค1
๐Ÿ‘€ The Performance Inequality Gap in 2026

Esteemed browser and Web standards expert Alex Russell looks at the state of client-side Web performance, what sort of bandwidth you should be taking into account, what devices people are using, and warns against ever-growing JavaScript bundle sizes. A lot of data here.

Alex Russell
Please open Telegram to view this post
VIEW IN TELEGRAM
โค1๐Ÿ‘1๐Ÿ”ฅ1