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

Según los últimos datos del 15 junio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de -174, y en las últimas 24 horas de 16, 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.21%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 2.59% de reacciones respecto al total de suscriptores.
  • Alcance de las publicaciones: Cada publicación recibe en promedio 1 952 visualizaciones. En el primer día suele acumular 813 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 16 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 440
Suscriptores
+1624 horas
-137 días
-17430 días
Archivo de publicaciones
What is the output?
Anonymous voting

CHALLENGE
let str = "Hello, World!";
let result = str.substring(7, 12);
console.log(result);

👈 Tagify 4.33: An Elegant Input Component for Tags The polished demos show a lot of effort has been put in here. GitHub repo
👈 Tagify 4.33: An Elegant Input Component for Tags The polished demos show a lot of effort has been put in here. GitHub repo. Yair Even-Or

What is the output?
Anonymous voting

CHALLENGE
function displayArguments() {
  console.log(arguments.length);
  console.log(arguments[0]);
  console.log(arguments[2]);
}

displayArguments('Hello', 'World', 'JavaScript', 'Quiz');

📄 Play Tetris in a PDF File I'll let you decide if this one is fun or frightening! Whether or not this will work depends on
📄 Play Tetris in a PDF File I'll let you decide if this one is fun or frightening! Whether or not this will work depends on your PDF reader or browser support, but it works with Chrome and Firefox, at least. The PDF document format supports embedded JavaScript and this experiment uses it to implement a game of Tetris. The developer, Thomas Rinsma, has used Python to output the PostScript that includes the game's JavaScript. Couple that with the fact many browser PDF renderers are themselves implemented in JavaScript (e.g. PDF.js) and you have a veritable Matryoshka doll of technologies at play here.

What is the output?
Anonymous voting

CHALLENGE
function trickyFunction() {
  let a = 5;
  let b = '5';
  let c = 5;

  if (a == b && b === c) {
    console.log('Condition 1');
  } else if (a === c || b == c) {
    console.log('Condition 2');
  } else {
    console.log('Condition 3');
  }
}

trickyFunction();

👀 PostalMime: A Universal Email Parsing Library An email parsing library happy in most JS runtimes. Takes the raw source of
👀 PostalMime: A Universal Email Parsing Library An email parsing library happy in most JS runtimes. Takes the raw source of emails and parses them into their constituent parts. Postal Systems

What is the output?
Anonymous voting

CHALLENGE
var obj = { a: 10, b: 20 };

with (obj) {
  var result = a + b;
}

console.log(result);

⭐ 2024's JavaScript Rising Stars It’s time to fully wave goodbye to 2024, but not before Michael Rambeau’s annual analysis of
2024's JavaScript Rising Stars It’s time to fully wave goodbye to 2024, but not before Michael Rambeau’s annual analysis of which JavaScript projects fared best on GitHub over the past year. Even if you dislike GitHub stars as a metric for anything, this remains a great way to get a feel for the JavaScript ecosystem and see what libraries and tools have mindshare in a variety of niches. A fantastic roundup as always. Michael Rambeau

What is the output?
Anonymous voting

CHALLENGE
const myObject = {
  a: 1,
  b: 2,
  c: 3,
  [Symbol.iterator]: function* () {
    for (let key of Object.keys(this)) {
      yield this[key];
    }
  }
};

const iter = myObject[Symbol.iterator]();
console.log(iter.next().value);
console.log(iter.next().value);
console.log(iter.next().value);

What is the output?
Anonymous voting

CHALLENGE
function* customGenerator() {
    yield 'Hello';
    yield 'World';
    return 'Done';
}

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

What is the output?
Anonymous voting

CHALLENGE
const mySet = new Set();
mySet.add(10);
mySet.add(20);
mySet.add(10);
mySet.add(30);

console.log(mySet.size);

What is the output?
Anonymous voting

CHALLENGE
const WM = new WeakMap();
let obj = {};
let anotherObj = {};
WM.set(obj, 'object data');
WM.set(anotherObj, 'another object data');
obj = null;

// Let's check what's logged
console.log(WM.has(obj));
console.log(WM.has(anotherObj));