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 406 suscriptores, ocupando la posición 4 370 en la categoría Tecnologías y Aplicaciones y el puesto 13 353 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 406 suscriptores.

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

  • Estado de verificación: No verificado
  • Tasa de interacción (ER): El promedio de interacción de la audiencia es 5.88%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 2.24% de reacciones respecto al total de suscriptores.
  • Alcance de las publicaciones: Cada publicación recibe en promedio 1 848 visualizaciones. En el primer día suele acumular 705 visualizaciones.
  • Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 6.
  • 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 21 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 406
Suscriptores
-2024 horas
-307 días
-16430 días
Archivo de publicaciones
What is the output?
Anonymous voting

CHALLENGE

function* genFunc() {
  yield Symbol('A');
  yield new Function('return this')();
}

const obj = { key: genFunc().next().value };
obj.key = genFunc().next().value;

console.log(obj.key === globalThis);

What is the output?
Anonymous voting

CHALLENGE

let obj1 = { key: 'value1' };
let obj2 = { key: 'value2' };

const map = new Map();
const weakMap = new WeakMap();

map.set(obj1, 'mapValue');
weakMap.set(obj2, 'weakMapValue');

obj1 = null;  // Changing reference
obj2 = null;  // Changing reference

console.log(map.has(obj1));
console.log(weakMap.has(obj2));

✌️ SOME UPDATES JavaScript Weekly
✌️ SOME UPDATES JavaScript Weekly

✌️ Promises from the Ground Up Josh notes that in order to truly understand promises, a fundamental part of modern JS develop
✌️ Promises from the Ground Up Josh notes that in order to truly understand promises, a fundamental part of modern JS development, we need “a surprisingly deep understanding of how JavaScript works and what its limitations are”. Luckily, this tutorial covers all the critical context you need. Josh W Comeau 👀 If you're a bit more advanced, you might enjoy Alex MacArthur's look at controlling promises using Promise.withResolvers().

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  yield new Promise(resolve => resolve(2));
  yield 3;
}

const gen = generator();
console.log(gen.next().value);
gen.next().value.then(console.log);
console.log(gen.next().value);

Even though Armenia 🇦🇲 is a small country, we have a really big JavaScript community 😎. There are many events related to J
Even though Armenia 🇦🇲 is a small country, we have a really big JavaScript community 😎. There are many events related to JavaScript, and another one is happening tomorrow: JSConf Armenia 2024! If you are in Armenia and would like to attend, just grab your tickets from the website.

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  yield 2;
  return 3;
}

const gen = generator();
console.log(gen.next().value);
console.log(gen.next().value);
console.log(gen.next().value);

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  const value = yield 1;
  yield value;
}

const gen = generator();
console.log(gen.next().value);
console.log(gen.next(2).value);

🍊 Qlock: A JavaScript Quine Clock We linked to Martin's array of creative JavaScript experiments earlier, but why not finish
🍊 Qlock: A JavaScript Quine Clock We linked to Martin's array of creative JavaScript experiments earlier, but why not finish with one that particularly tickled us? A quine is a program that takes no input but manages to produce, as output, its own source code. Here’s a fun JavaScript example that isn’t merely a quine, but a clock too. Martin Kleppe

What is the output?
Anonymous voting

CHALLENGE

function* generator1() {
  yield 1;
  yield 2;
}

function* generator2() {
  yield* generator1();
  yield 3;
}

const gen = generator2();
console.log(gen.next().value);
console.log(gen.next().value);
console.log(gen.next().value);

✌️ Regexper: Display JavaScript Regular Expressions as Railroad Diagrams Might come in handy for learning regular expressions
✌️ Regexper: Display JavaScript Regular Expressions as Railroad Diagrams Might come in handy for learning regular expressions or if you have a complex regular expression and you don’t know what it does (not an uncommon situation..!) Jeff Avallone

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  yield* [2, 3];
  yield 4;
}

const gen = generator();
for (const value of gen) {
  console.log(value);
}

JavaScript - Estadísticas y analítica del canal de Telegram @javascript