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 169 subscribers, ranking 4 162 in the Technologies & Applications category and 12 802 in the India region.

πŸ“Š Audience metrics and dynamics

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

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

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 6.13%. Within the first 24 hours after publication, content typically collects 2.29% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 1 911 views. Within the first day, a publication typically gains 715 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 5.
  • 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 17 September, 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 169
Subscribers
-124 hours
-417 days
-15030 days
Posts Archive
❓ TermDOM: Build Terminal UIs with HTML, CSS and the DOM Like the look of Ink but don't like React? TermDOM implements a DOM,
❓ TermDOM: Build Terminal UIs with HTML, CSS and the DOM Like the look of Ink but don't like React? TermDOM implements a DOM, cascade and layout engine that paints to the terminal, so you can write a TUI with HTML and CSS. Pure JS, no native or WASM dependencies, and the official TodoMVC runs with only a stylesheet swap. Early days, but I like the idea! Brian Kim

What is the output?
Anonymous voting

CHALLENGE
function curry(fn) {
  return function curried(...args) {
    if (args.length >= fn.length) {
      return fn.apply(this, args);
    }
    return (...more) => curried.apply(this, args.concat(more));
  };
}

function add(a, b, c = 10) {
  return a + b + c;
}

const curriedAdd = curry(add);
console.log(`${curriedAdd(1)(2)} ${curriedAdd(1,2,3)} ${curriedAdd(4)(5,6)}`);

The js1024 code golfing contest is over and we have three winners! Skydreams, a Super Monkey Ball-like experience, came in fi
The js1024 code golfing contest is over and we have three winners! Skydreams, a Super Monkey Ball-like experience, came in first place. You can read the readable and minified source if you want to see the techniques used.

What is the output?
Anonymous voting

CHALLENGE
function combine(a, b = 10, ...rest) {
  return JSON.stringify([a, b, rest]);
}
const inputs = [1, undefined, 3, 4, 5];
console.log(combine(...inputs));

πŸ‘€ Migrating a Large Flow Monorepo to TypeScript Over several years, Yelp moved 1.4 million lines off Flow, and this writeup
πŸ‘€ Migrating a Large Flow Monorepo to TypeScript Over several years, Yelp moved 1.4 million lines off Flow, and this writeup is more useful as a guide to running any long migration than as a Flow story. It was a big win on its own terms, with type coverage up from 83% to 96%. Shawn Walton (Yelp)

What is the output?
Anonymous voting

CHALLENGE
const key = 'greet';
const name = 'world';
const obj = {
  name,
  [key]() { return `Hello, ${this.name}`; },
  [`${key}Arrow`]: () => `Hello, ${this?.name}`,
};
console.log(`${obj.greet()} | ${obj.greetArrow()}`);

What is the output?
Anonymous voting

CHALLENGE
const obj = { a: { b: null }, getVal: null };
let counter = 0;
function sideEffect() {
  counter++;
  return counter;
}
const result = obj?.a?.b?.[sideEffect()] ?? 'default1';
const result2 = obj.getVal?.(sideEffect()) ?? 'default2';
const result3 = obj?.a?.c?.d ?? sideEffect();
console.log(result, result2, result3, counter);

Did you know JavaScript supports a third type of comment (beyond // and /* */)? πŸ˜‰ Mat Marquis shows off hashbang comments in
Did you know JavaScript supports a third type of comment (beyond // and /* */)? πŸ˜‰ Mat Marquis shows off hashbang comments in a short YouTube video. And yes, they're in the language spec!

What is the output?
Anonymous voting

CHALLENGE
function test() {
  try {
    console.log(y);
  } catch (e) {
    return e.constructor.name;
  }
}

let result1 = test();
let y = 'hoisted';

console.log(result1, typeof y, y);

πŸ‘€ anydoc: Convert 14 Document Formats into Markdown A Rust-powered library (with Node.js and WASM bindings) that converts Wo
πŸ‘€ anydoc: Convert 14 Document Formats into Markdown A Rust-powered library (with Node.js and WASM bindings) that converts Word, PowerPoint, Excel, OpenDocument, RTF, EPUB, CSV, and PDF documents into Markdown. I tried it on a 1,600 page PDF and it took less than 2 seconds. There's also an in-browser demo to try it out. GitHub repo. Firecrawl

What is the output?
Anonymous voting

CHALLENGE
const arr = [1, 2, 3, 4, 5];
arr[Symbol.iterator] = function* () {
  for (let i = 0; i < 3; i++) yield arr[i] * 2;
};
console.log([...arr], JSON.stringify(arr));

🀟 Node.js 26.7.0 (Current) Released Landing just two days after 26.6, coverage reports can now include files your tests didn
🀟 Node.js 26.7.0 (Current) Released Landing just two days after 26.6, coverage reports can now include files your tests didn't touch with --test-coverage-include-all, FFI and SQLite pick up crash fixes, and Perfetto tracing support lands, though you'll need a custom build to use it. Antoine du Hamel

What is the output?
Anonymous voting

CHALLENGE
class Money {
  #amount;
  constructor(amount) { this.#amount = amount; }
  [Symbol.toPrimitive](hint) {
    if (hint === 'number') return this.#amount;
    if (hint === 'string') return `$${this.#amount}`;
    return `Money(${this.#amount})`;
  }
}
const m = new Money(42);
console.log(`${m}`, m + 8, m == 42);