uk
Feedback
JavaScript

JavaScript

Відкрити в 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

Показати більше

📈 Аналітичний огляд Telegram-каналу JavaScript

Канал JavaScript (@javascript) у мовному сегменті Англійська є активним учасником. На даний момент спільнота об'єднує 31 396 підписників, посідаючи 4 369 місце в категорії Технології та додатки та 13 278 місце у регіоні Індія.

📊 Показники аудиторії та динаміка

З моменту свого створення невідомо, проект продемонстрував стрімке зростання, зібравши аудиторію у 31 396 підписників.

За останніми даними від 21 червня, 2026, канал демонструє стабільну активність. Хоча за останні 30 днів спостерігається зміна кількості учасників на -169, а за останні 24 години на -9, загальне охоплення залишається високим.

  • Статус верифікації: Не верифікований
  • Рівень залученості (ER): Середній показник залученості аудиторії становить 5.80%. Протягом перших 24 годин після публікації контент зазвичай збирає 2.10% реакцій від загальної кількості підписників.
  • Охоплення публікацій: В середньому кожен допис отримує 1 821 переглядів. Протягом першої доби публікація в середньому набирає 660 переглядів.
  • Реакції та взаємодія: Аудиторія активно підтримує контент: середня кількість реакцій на один пост – 7.
  • Тематичні інтереси: Контент зосереджений навколо ключових тем, таких як javascript, console.log(gen.next().value, processdata, remix, acc.

📝 Опис та контентна політика

Автор описує ресурс як майданчик для висловлення суб'єктивної думки:
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

Завдяки високій частоті оновлень (останні дані отримано 22 червня, 2026), канал підтримує актуальність та високий рівень охоплення публікацій. Аналітика показує, що аудиторія активно взаємодіє з контентом, що робить його важливою точкою впливу в категорії Технології та додатки.

31 396
Підписники
-924 години
-257 днів
-16930 день
Архів дописів
🤟 __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