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

Según los últimos datos del 19 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 -19, 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.95%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 2.38% de reacciones respecto al total de suscriptores.
  • Alcance de las publicaciones: Cada publicación recibe en promedio 1 869 visualizaciones. En el primer día suele acumular 747 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 20 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 429
Suscriptores
-1924 horas
+117 días
-16430 días
Archivo de publicaciones
CHALLENGE

const obj = {};
Object.defineProperty(obj, 'name', {
  value: 'Alice',
  writable: false,
  configurable: false
});

try {
  obj.name = 'Bob';
  delete obj.name;
  console.log(obj.name);
} catch (e) {
  console.log('Error:', e.message);
}

What is the output?
Anonymous voting

CHALLENGE

function processData({ a = 10, b = 20 } = { a: 30 }) {
  console.log(a, b);
}

processData({ a: 5 });
processData();

What is the output?
Anonymous voting

CHALLENGE

function* numberGenerator() {
  let i = 0;
  while (i < 3) {
    yield i++;
  }
}

const gen = numberGenerator();
console.log(gen.next().value);
console.log(gen.return(10).value);
console.log(gen.next().value);

What is the output?
Anonymous voting

CHALLENGE

const obj = Object.freeze({
  name: "Alice",
  info: {
    age: 25
  }
});

try {
  obj.name = "Bob";
  obj.info.age = 30;
} catch (e) {
  console.log("Error:", e.message);
}

console.log(obj.name, obj.info.age);

👀 DOCX 9.0: Generate Word .docx Files from JavaScript The code to lay out documents is verbose but there’s a lot of function
👀 DOCX 9.0: Generate Word .docx Files from JavaScript The code to lay out documents is verbose but there’s a lot of functionality baked in and there aren’t many other options for this task. Here’s a CodePen-based example to give you an idea. GitHub repo. Dolan Miu

What is the output?
Anonymous voting

CHALLENGE

async function first() {
  console.log('First Start');
  await second();
  console.log('First End');
}

async function second() {
  console.log('Second Start');
}

console.log('Script Start');
first();
setTimeout(() => console.log('Timeout'), 0);
console.log('Script End');

✌️ TC39 Advances 10+ ECMAScript Proposals The architects behind the development of the ECMAScript / JavaScript spec got toget
✌️ TC39 Advances 10+ ECMAScript Proposals The architects behind the development of the ECMAScript / JavaScript spec got together again this week (you can see them in this tweet) and they had a packed agenda. Import attributes, Iterator helpers, Promise.try and Regexp modifiers all made it to stage 4, and more besides. Sarah Gooding (Socket)

What is the output?
Anonymous voting

CHALLENGE

setTimeout(() => console.log('Timeout 1'), 100);

setTimeout(() => {
  console.log('Timeout 2');
  Promise.resolve().then(() => console.log('Promise in Timeout 2'));
}, 50);

Promise.resolve().then(() => console.log('Promise 1'));

setTimeout(() => console.log('Timeout 3'), 150);

console.log('Sync');

What is the output?
Anonymous voting

CHALLENGE

setTimeout(() => {
  console.log('Timeout');
  Promise.resolve().then(() => console.log('Promise after Timeout'));
}, 0);

Promise.resolve().then(() => console.log('Promise'));

console.log('End of script');

What is the output?
Anonymous voting