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 406 subscribers, ranking 4 370 in the Technologies & Applications category and 13 353 in the India region.

πŸ“Š Audience metrics and dynamics

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

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

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 5.88%. Within the first 24 hours after publication, content typically collects 2.24% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 1 848 views. Within the first day, a publication typically gains 705 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 6.
  • 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 21 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 406
Subscribers
-2024 hours
-307 days
-16430 days
Posts Archive
πŸ‘€ How 1Password Used esbuild to Cut Browser Extension Build Times 1Password is a popular password management tool that relie
πŸ‘€ How 1Password Used esbuild to Cut Browser Extension Build Times 1Password is a popular password management tool that relies upon a browser extension to fill out passwords on the Web. At over a minute for a single build, things were starting to drag for the devs. Could esbuild help? A fun story with plenty of technical details. Jarek Samic

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  return 2;
}

const gen = generator();
console.log(gen.next().value);
console.log(gen.next().value);

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  yield* (function*() { yield 2; yield 3; })();
  yield 4;
}

const gen = generator();
console.log(gen.next().value);
console.log(gen.next().value);
console.log(gen.next().value);
console.log(gen.next().value);

✌️ SOME UPDATES
✌️ SOME UPDATES

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  yield 2;
  yield 3;
}

const gen1 = generator();
const gen2 = generator();

console.log(gen1.next().value);
console.log(gen2.next().value);
console.log(gen1.next().value);
console.log(gen2.next().value);

✨ Creating Realistic Handwriting with p5.js Amy wanted to programatically bring her (cursive) handwriting into some diagrams
✨ Creating Realistic Handwriting with p5.js Amy wanted to programatically bring her (cursive) handwriting into some diagrams she was making and figured out how to make it happen with p5.js. Here's how. AMY GOODCHILD

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield* [1, 2, 3];
  yield 4;
}

const gen = generator();
console.log([...gen]);

πŸ€” City in a Bottle: Raycasting in 256 Bytes Frank has a great reputation for putting together stunning visual demos with the
πŸ€” City in a Bottle: Raycasting in 256 Bytes Frank has a great reputation for putting together stunning visual demos with the tiniest amounts of JavaScript. This is no exception. He goes into a lot of detail about how it works; you’ll learn a few things and/or come away awe-struck. FRANK FORCE

What is the output?
Anonymous voting

CHALLENGE

const obj = {
  a: 1,
  b: function() {
    return () => {
      return this.a;
    };
  },
  c: function() {
    return function() {
      return this.a;
    };
  }
};

const arrowFunc = obj.b();
const regularFunc = obj.c();

console.log(arrowFunc());
console.log(regularFunc());

🧠 Brainchop 4.0 An in-browser 3D MRI rendering system. (Demo.)
🧠 Brainchop 4.0 An in-browser 3D MRI rendering system. (Demo.)

What is the output?
Anonymous voting

CHALLENGE

console.log(1);

setTimeout(() => {
  console.log(2);
}, 100);

setTimeout(() => {
  console.log(3);
}, 0);

Promise.resolve().then(() => {
  console.log(4);
}).then(() => {
  console.log(5);
});

console.log(6);

✌️⚑️ IN BRIEF & SOME RELEASES
✌️⚑️ IN BRIEF & SOME RELEASES

What is the output?
Anonymous voting

CHALLENGE

let proto = { a: 1 };
let obj = Object.create(proto);

Object.defineProperty(obj, 'a', {
  value: 2,
  writable: false,
  enumerable: true,
  configurable: false
});

console.log(obj.a);
proto.a = 3;
console.log(obj.a);