JavaScript
32.2K subscribers
1.07K photos
10 videos
33 files
754 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
✌️ JavaScript Engines Zoo: Learn About Over 100 JS Engines

I’m a sucker for a big table of data and this is about as big as it gets when it comes to JavaScript engines. See how various engines compare, sort them by performance, or click on an engine’s name to learn more about its development, history, and end users. The project’s repo also has Dockerfiles for trying each of them out.

Ivan Krasilnikov
Please open Telegram to view this post
VIEW IN TELEGRAM
6👍3
✌️ This week's TC39 meeting: The Ecma TC39 committee (the group behind the design of ECMAScript / JavaScript) met up for the 111th time this week (seen above) to discuss language proposals. The meeting notes won't be published for a few weeks, but several proposals did see some progress:

- Iterator Sequencing progressed to stage 4.

- Joint Iteration, Iterator Join, and Await dictionary of Promises go stage 2.7.

- The Intl Unit Protocol also reached stage 1 to provide a way to annotate quantities with the units being measured.

- Typed Array Find Within progressed to stage 1. Think a native indexOf-type method for TypedArrays.

Note: Learn more about what the TC39 stages mean here.
Please open Telegram to view this post
VIEW IN TELEGRAM
8🔥4👍2
😉 The State of Node.js in 2025, Explained

A thirty-minute talk from JSNation earlier this year where TSC member Matteo Collina presented an update on Node’s still-growing popularity, release schedule, security, recent performance enhancements, the permissions system, and more.

GitNation
Please open Telegram to view this post
VIEW IN TELEGRAM
8🔥2👍1
CHALLENGE

console.log(typeof myFunction);
console.log(typeof myVar);
console.log(typeof myLet);
console.log(typeof myConst);

var myVar = 'hello';
let myLet = 'world';
const myConst = 'test';

function myFunction() {
return 'hoisted';
}

console.log(myFunction());
console.log(myVar);
4🤣1
👀 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
3👍1
😮 vis-timeline 8.4Interactive control to visualize data across time, as shown above. Numerous examples here.
Please open Telegram to view this post
VIEW IN TELEGRAM
2🔥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
2👍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
👍63🤔3
😆
Please open Telegram to view this post
VIEW IN TELEGRAM
🤣43🔥21
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
6
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);