ru
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