en
Feedback
JavaScript

JavaScript

Open in Telegram

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

Show more

πŸ“ˆ Analytical overview of Telegram channel JavaScript

Channel JavaScript (@javascript) in the English language segment is an active participant. Currently, the community unites 31 377 subscribers, ranking 4 369 in the Technologies & Applications category and 13 278 in the India region.

πŸ“Š Audience metrics and dynamics

Since its creation on Π½Π΅Π²Ρ–Π΄ΠΎΠΌΠΎ, the project has demonstrated rapid growth, gathering an audience of 31 377 subscribers.

According to the latest data from 21 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -169 over the last 30 days and by -9 over the last 24 hours, overall reach remains high.

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 5.80%. Within the first 24 hours after publication, content typically collects 2.10% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 1 821 views. Within the first day, a publication typically gains 660 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 7.
  • Thematic interests: Content is focused on key topics such as javascript, console.log(gen.next().value, processdata, remix, acc.

πŸ“ Description and content policy

The author describes the resource as a platform for expressing subjective opinions:
β€œ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”

Thanks to the high frequency of updates (latest data received on 22 June, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.

31 377
Subscribers
-924 hours
-257 days
-16930 days
Posts Archive
🀟 __dirname is Back in Node with ES Modules In an ES module, instead of using __dirname or __filename, you can now use import.meta.dirname and import.meta.filename (this came with Node 20.11.0 (LTS) released in January). PHIL NASH

What is the output?
Anonymous voting

❓ CHALLENGE

function* generator() {
  yield 1;
  yield 2;
  yield 3;
}
const gen = generator();
console.log(gen.next().value);
console.log(gen.next().value);

πŸ˜‚
πŸ˜‚

What is the output?
Anonymous voting

❓ CHALLENGE

const obj = {
  a: 1,
  b: function() {
    console.log(this.a);
  }
};
const func = obj.b;
func();

What is the output?
Anonymous voting

❓ CHALLENGE

function foo() {
    let a = b = 0
    a++
    return a
}
 
foo()
console.log(typeof a)
console.log(typeof b)

πŸ—£οΈ Why is it called a REST API when it wakes me up at 3 AM to fix it? Zach Wilson

What is the output?
Anonymous voting

CHALLENGE ❓
let x = 5;
let result = typeof (x + "10");

console.log(result);

🍊 Atrament 4.0: Library for Smooth Canvas Drawing and Handwriting A small library for beautiful drawing and handwriting on c
🍊 Atrament 4.0: Library for Smooth Canvas Drawing and Handwriting A small library for beautiful drawing and handwriting on canvas elements. It’s been around for several years but v4.0 is almost a complete rewrite. GitHub repo. JAKUB FIALA

What is the output?
Anonymous voting

CHALLENGE ❓

let arr = [1, 2, 3];

function modifyArray(array) {
  array.push(4);
}

modifyArray(arr.splice(1));
console.log(arr);

🀟 Runtime Compatibility Across JavaScript Runtimes Several developers have come together to build this convenient way to vis
🀟 Runtime Compatibility Across JavaScript Runtimes Several developers have come together to build this convenient way to visualize the compatibility of different Web APIs and JavaScript features across the ever increasing number of different runtimes (e.g. Bun, Deno, Node, LLRT..) TOM LIENARD ET AL. βœ… The item above reminds me of node.green, a visualization of JS feature support across versions of Node / V8, though it is nearly entirely green/Yes these days!

Thanks Samvel for the quiz!

What is the output?
Anonymous voting

❓ CHALLENGE

console.log(new RegExp({}).test("mom"));

console.log(new RegExp({}).test("dad"));

🀟 Bringing require(esm) Joyee writes about landing experimental support for require()-ing synchronous ES modules in Node, a feature that has been a long time coming, due to both technical and cultural factors. JOYEE CHEUNG