es
Feedback
JavaScript

JavaScript

Ir al canal en 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

Mostrar más

📈 Análisis del canal de Telegram JavaScript

El canal JavaScript (@javascript) en el segmento lingüístico de Inglés es un actor destacado. Actualmente la comunidad reúne a 31 443 suscriptores, ocupando la posición 4 384 en la categoría Tecnologías y Aplicaciones y el puesto 13 551 en la región India.

📊 Métricas de audiencia y dinámica

Desde su creación el невідомо, el proyecto ha mostrado un crecimiento acelerado, reuniendo a 31 443 suscriptores.

Según los últimos datos del 13 junio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de -193, y en las últimas 24 horas de 21, conservando un alto alcance.

  • Estado de verificación: No verificado
  • Tasa de interacción (ER): El promedio de interacción de la audiencia es 6.27%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 2.53% de reacciones respecto al total de suscriptores.
  • Alcance de las publicaciones: Cada publicación recibe en promedio 1 972 visualizaciones. En el primer día suele acumular 796 visualizaciones.
  • Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 7.
  • Intereses temáticos: El contenido se centra en temas clave como javascript, console.log(gen.next().value, processdata, remix, acc.

📝 Descripción y política de contenido

El autor describe el recurso como un espacio para expresar opiniones subjetivas:
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

Gracias a la alta frecuencia de actualizaciones (últimos datos recibidos el 14 junio, 2026), el canal mantiene la vigencia y un amplio alcance. La analítica demuestra que la audiencia interactúa activamente con el contenido, lo que lo convierte en un punto de referencia dentro de la categoría Tecnologías y Aplicaciones.

31 443
Suscriptores
+2124 horas
-537 días
-19330 días
Archivo de publicaciones
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