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

Según los últimos datos del 21 junio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de -169, y en las últimas 24 horas de -9, 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.80%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 2.10% de reacciones respecto al total de suscriptores.
  • Alcance de las publicaciones: Cada publicación recibe en promedio 1 821 visualizaciones. En el primer día suele acumular 660 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 22 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 377
Suscriptores
-924 horas
-257 días
-16930 días
Archivo de publicaciones
🤟 __dirname is Back in Node with ES Modules In an ES module, instead of using __dirname or __filename, you can now use import.meta.dirname and import.meta.filename (this came with Node 20.11.0 (LTS) released in January). PHIL NASH

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  yield 2;
  yield 3;
}
const gen = generator();
console.log(gen.next().value);
console.log(gen.next().value);

😂
😂

What is the output?
Anonymous voting

CHALLENGE

const obj = {
  a: 1,
  b: function() {
    console.log(this.a);
  }
};
const func = obj.b;
func();

What is the output?
Anonymous voting

CHALLENGE

function foo() {
    let a = b = 0
    a++
    return a
}
 
foo()
console.log(typeof a)
console.log(typeof b)

🗣️ Why is it called a REST API when it wakes me up at 3 AM to fix it? Zach Wilson

What is the output?
Anonymous voting

CHALLENGE
let x = 5;
let result = typeof (x + "10");

console.log(result);

🍊 Atrament 4.0: Library for Smooth Canvas Drawing and Handwriting A small library for beautiful drawing and handwriting on c
🍊 Atrament 4.0: Library for Smooth Canvas Drawing and Handwriting A small library for beautiful drawing and handwriting on canvas elements. It’s been around for several years but v4.0 is almost a complete rewrite. GitHub repo. JAKUB FIALA

What is the output?
Anonymous voting

CHALLENGE

let arr = [1, 2, 3];

function modifyArray(array) {
  array.push(4);
}

modifyArray(arr.splice(1));
console.log(arr);

🤟 Runtime Compatibility Across JavaScript Runtimes Several developers have come together to build this convenient way to vis
🤟 Runtime Compatibility Across JavaScript Runtimes Several developers have come together to build this convenient way to visualize the compatibility of different Web APIs and JavaScript features across the ever increasing number of different runtimes (e.g. Bun, Deno, Node, LLRT..) TOM LIENARD ET AL. ✅ The item above reminds me of node.green, a visualization of JS feature support across versions of Node / V8, though it is nearly entirely green/Yes these days!

Thanks Samvel for the quiz!

What is the output?
Anonymous voting

CHALLENGE

console.log(new RegExp({}).test("mom"));

console.log(new RegExp({}).test("dad"));

🤟 Bringing require(esm) Joyee writes about landing experimental support for require()-ing synchronous ES modules in Node, a feature that has been a long time coming, due to both technical and cultural factors. JOYEE CHEUNG