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
QUICK BITS: 🤝 It hasn't been finalized yet, but the Node team is working on a Node.js Advocacy Ambassador program where the team will nominate a group of annual ambassadors to help in spreading the word about various Node.js topics. ⚠️ If you haven't taken the official Node.js Next 10 Survey yet, please do! Entries close this Friday, May 24, and your input will help steer future core team decisions. ‼️ Talking of surveys, the 2024 Stack Overflow developer survey has just gone live. It's open till June 7.

What is the output?
Anonymous voting

CHALLENGE

let obj = {};
Object.defineProperty(obj, 'a', {
  value: 1,
  enumerable: true
});

let clone = Object.create(
  Object.getPrototypeOf(obj),
  Object.getOwnPropertyDescriptors(obj)
);

console.log(clone.a);
console.log(clone.hasOwnProperty('a'));

What is the output?
Anonymous voting

CHALLENGE

let obj = { a: 1 };
Object.freeze(obj);

console.log(Object.isFrozen(obj));
console.log(obj.a = 2);
console.log(obj.a);

🤟 Node v22.2.0 (Current) Released A less significant release, feature-wise, than 22.0 or 22.1, but lots of little bug fixes,
🤟 Node v22.2.0 (Current) Released A less significant release, feature-wise, than 22.0 or 22.1, but lots of little bug fixes, tweaks around core dev experience, getting Node’s built-in ESLint rules ready for ESLint v9, and the ՝--inspect-wait՝ flag to make the debugger wait for a connection in order to debug code from the very start of execution. MICHAËL ZASSO

What is the output?
Anonymous voting

CHALLENGE

let obj = { a: 1 };
let proto = { b: 2 };

Object.setPrototypeOf(obj, proto);

for (let key in obj) {
  console.log(key);
}

😆 True...
😆 True...

What is the output?
Anonymous voting

CHALLENGE

function A() {}
A.prototype.value = 1;

function B() {}
B.prototype = new A();

B.prototype.value = 2;

var b = new B();
console.log(b.value);

🌲 GraphQL Yoga: A Full-Featured GraphQL Server Create a schema, spin up a server, and you’re good to go (then you get to wir
🌲 GraphQL Yoga: A Full-Featured GraphQL Server Create a schema, spin up a server, and you’re good to go (then you get to wire everything up). Supports GraphQL subscriptions via SSE. Designed to run across numerous environments from Node to AWS Lambda, Deno, Bun etc. GitHub repo. THE GUILD

What is the output?
Anonymous voting

CHALLENGE

function X() {}
X.prototype.getValue = function() {
  return this.value;
};

function Y() {
  this.value = 42;
}
Y.prototype = Object.create(X.prototype);
Y.prototype.constructor = Y;

var y = new Y();
console.log(y.getValue());

📖 Code Screenshot: A VS Code Extension to Create Code Screenshots It basically loads your code into this site (which you can
📖 Code Screenshot: A VS Code Extension to Create Code Screenshots It basically loads your code into this site (which you can use directly, if you'd rather not install an extension) where you can tweak settings/theme and export to either a PNG or SVG. VKRSI / VISUAL STUDIO MARKETPLACE

What is the output?
Anonymous voting

CHALLENGE

function Person() {}

var person = new Person();

console.log(person instanceof Person);
console.log(person instanceof Object);

🕹️ Athena Crisis: A Quality, JS-Powered Game A commercial, turn-based strategy game available on the Steam Store, but now wi
🕹️ Athena Crisis: A Quality, JS-Powered Game A commercial, turn-based strategy game available on the Steam Store, but now with an open sourced engine and tooling. The game is published by Null, an indie game publisher founded by GitHub cofounder Chris Wanstrath. CHRISTOPH NAKAZAWA