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 443 підписників, посідаючи 4 384 місце в категорії Технології та додатки та 13 551 місце у регіоні Індія.

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

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

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

  • Статус верифікації: Не верифікований
  • Рівень залученості (ER): Середній показник залученості аудиторії становить 6.27%. Протягом перших 24 годин після публікації контент зазвичай збирає 2.53% реакцій від загальної кількості підписників.
  • Охоплення публікацій: В середньому кожен допис отримує 1 972 переглядів. Протягом першої доби публікація в середньому набирає 796 переглядів.
  • Реакції та взаємодія: Аудиторія активно підтримує контент: середня кількість реакцій на один пост – 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

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

31 443
Підписники
+2124 години
-537 днів
-19330 день
Архів дописів
CHALLENGE
const user = {
  profile: {
    settings: {
      theme: 'dark'
    }
  }
};

const getTheme = (obj) => obj?.profile?.settings?.theme ?? 'light';
const getLanguage = (obj) => obj?.profile?.settings?.language ?? 'en';
const getNotifications = (obj) => obj?.profile?.notifications?.enabled ?? true;

console.log(getTheme(user));
console.log(getLanguage(user));
console.log(getNotifications(user));
console.log(getTheme(null));

And there is another fork 😆

They deleted the repo, but you can simply use wayback 😆

What is the output?
Anonymous voting

CHALLENGE
const target = { name: 'John', age: 30 };
const handler = {
  get(obj, prop) {
    if (prop in obj) {
      return `[${obj[prop]}]`;
    }
    return `missing: ${prop}`;
  },
  set(obj, prop, value) {
    obj[prop] = value.toUpperCase();
    return true;
  }
};
const proxy = new Proxy(target, handler);
proxy.city = 'paris';
console.log(proxy.name);
console.log(proxy.city);
console.log(proxy.country);

😮 Apple App Store frontend source code archive How is this possible? Because Apple forgot to disable sourcemaps in productio
😮 Apple App Store frontend source code archive How is this possible? Because Apple forgot to disable sourcemaps in production on the App Store website 🙃

What is the output?
Anonymous voting

CHALLENGE
const source = {
  value: 1,
  subscribers: new Set(),
  subscribe(fn) {
    this.subscribers.add(fn);
    return () => this.subscribers.delete(fn);
  },
  next(newValue) {
    this.value = newValue;
    this.subscribers.forEach(fn => fn(this.value));
  }
};

const mapped = {
  value: undefined,
  source,
  transform: x => x * 2,
  init() {
    this.source.subscribe(val => {
      this.value = this.transform(val);
      console.log(`Mapped: ${this.value}`);
    });
  }
};

mapped.init();
source.next(3);
source.next(5);
console.log(`Final: ${mapped.value}`);
source.next(2);

😆
😆

What is the output?
Anonymous voting

CHALLENGE
try {
  const obj = null;
  obj.property = 'value';
} catch (e) {
  console.log(e.name);
}

try {
  undeclaredVariable;
} catch (e) {
  console.log(e.name);
}

try {
  JSON.parse('invalid json');
} catch (e) {
  console.log(e.name);
}

What is the output?
Anonymous voting

CHALLENGE
const numbers = [1, 2, 3, 4, 5];
const result = numbers
  .filter(n => n % 2 === 0)
  .map(n => n * 2)
  .reduce((acc, n) => acc + n, 0);

const original = numbers.slice();
original.reverse();

const flattened = [[1, 2], [3], [4, 5]].flat();
const found = flattened.find(n => n > 3);

console.log(result);
console.log(original.length);
console.log(found);

😮 Navcat: 3D Floor-Based Pathfinding Library It’s not often we see a library with such a funny demo on the homepage (it invo
😮 Navcat: 3D Floor-Based Pathfinding Library It’s not often we see a library with such a funny demo on the homepage (it involves cats and laser pointers!) Navcat is a pathfinding library, aimed at games and simulations, for enabling objects to route through 3D space. There are numerous other interesting demos too. GitHub repo. Isaac Mason

What is the output?
Anonymous voting

CHALLENGE
const user = {
  name: 'Sarah',
  age: 28,
  city: 'Boston'
};

const keys = Object.keys(user);
const values = Object.values(user);
const entries = Object.entries(user);

const result = entries.map(([key, value]) => {
  return typeof value === 'string' ? key.toUpperCase() : value * 2;
});

console.log(result);

🔵 Directives and the Platform Boundary First there was the "use strict" directive to opt in to strict mode in JavaScript, bu
🔵 Directives and the Platform Boundary First there was the "use strict" directive to opt in to strict mode in JavaScript, but now you’ll encounter use client, use server, React's new use no memo, and more, and they're not standard JS features at all. Tanner thinks this proliferation of directives comes at a cost, with an increased risk of framework and tooling lock-in. Tanner Linsley (TanStack)

What is the output?
Anonymous voting