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 439 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 439 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 439
Suscriptores
+2124 horas
-537 días
-19330 días
Archivo de publicaciones
What is the output?
Anonymous voting

CHALLENGE
const numbers = [1, 2, 3, 4, 5];

const result = numbers
  .map(x => x * 2)
  .filter(x => x > 5)
  .reduce((acc, x) => {
    acc.push(x.toString());
    return acc;
  }, [])
  .map(x => x + '!')
  .join(' | ');

console.log(result);
console.log(typeof result);

🥶 Announcing TypeScript 5.9 One of TypeScript's gentlest steps forward, with support for import defer, --module node20, and
🥶 Announcing TypeScript 5.9 One of TypeScript's gentlest steps forward, with support for import defer, --module node20, and ‘expandable hovers’ (below) to see expanded type information in IDEs. We also learn v6.0 will act as a ‘transition point’ to get prepared for the Go-powered ‘native port’ of TypeScript due to arrive as TypeScript 7.0. Microsoft

What is the output?
Anonymous voting

CHALLENGE
const target = { name: 'Maya', age: 25 };
const handler = {
  get(obj, prop) {
    if (prop in obj) {
      return obj[prop];
    }
    return `Property '${prop}' not found`;
  },
  set(obj, prop, value) {
    if (typeof value === 'string') {
      obj[prop] = value.toUpperCase();
    } else {
      obj[prop] = value;
    }
    return true;
  }
};
const proxy = new Proxy(target, handler);
proxy.city = 'tokyo';
console.log(proxy.name);
console.log(proxy.city);
console.log(proxy.country);

⚡️DevHelperAI — AI Assistant for Programmers Speed up solving programming tasks in any language — Python, JavaScript, Java, a
⚡️DevHelperAI — AI Assistant for Programmers Speed up solving programming tasks in any language — Python, JavaScript, Java, and more. Powered by ChatGPT Plus, but 3× cheaper! Don’t overpay $20 for ChatGPT Plus — pay just $7.25 and get faster, more accurate answers. Try DevHelperAI now! 👇 @devhelperai_bot

What is the output?
Anonymous voting

CHALLENGE
const obj = {
  name: 'Sarah',
  getName() {
    return this.name;
  },
  getNameArrow: () => {
    return this.name;
  }
};

const getName = obj.getName;
const getNameArrow = obj.getNameArrow;

console.log(obj.getName());
console.log(getName());
console.log(getNameArrow());
console.log(obj.getNameArrow());

🤩 pnpm 10.14: Adds Support for JavaScript Runtime Installation The popular, efficiency-focused package installer now lets yo
🤩 pnpm 10.14: Adds Support for JavaScript Runtime Installation The popular, efficiency-focused package installer now lets you define Node.js, Deno or Bun versions in package.json and pnpm will then download and pin them automatically. Zoltan Kochan

What is the output?
Anonymous voting

CHALLENGE
function processData(data) {
  try {
    if (!data) {
      throw new TypeError('Data is missing');
    }
    
    const result = data.process();
    return result;
  } catch (error) {
    console.log(error instanceof ReferenceError ? 1 :
               error instanceof TypeError ? 2 :
               error instanceof SyntaxError ? 3 : 4);
  }
}

processData(null);

Sorry for the confusion earlier! The correct answer is actually 24, not 18. After mapping and filtering, we get [6, 8, 10], and summing them gives 6 + 8 + 10 = 24.

What is the output?
Anonymous voting

CHALLENGE
const numbers = [1, 2, 3, 4, 5];

const result = numbers
  .map(n => n * 2)
  .filter(n => n > 5)
  .reduce((acc, n, index) => {
    acc.sum += n;
    acc.indices.push(index);
    return acc;
  }, { sum: 0, indices: [] });

console.log(result.sum);
console.log(result.indices);

💻 The Deno team has put together 😉 a brief video summarizing the Deno vs Oracle JavaScript™ trademark fight. You can also l
💻 The Deno team has put together 😉 a brief video summarizing the Deno vs Oracle JavaScript™ trademark fight. You can also learn a bit more about it in this open letter to Oracle asking it to 'free JavaScript.'

What is the output?
Anonymous voting

CHALLENGE
class Counter {
  constructor(max) {
    this.max = max;
  }
  
  *[Symbol.iterator]() {
    let current = 0;
    while (current < this.max) {
      yield current++;
    }
  }
}

const counter = new Counter(3);
const result = [...counter, ...counter];
console.log(result);

💻 The Deno team has put together 😉 a brief video summarizing the Deno vs Oracle JavaScript™ trademark fight. You can also l
💻 The Deno team has put together 😉 a brief video summarizing the Deno vs Oracle JavaScript™ trademark fight. You can also learn a bit more about it in this open letter to Oracle asking it to 'free JavaScript.'