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
👀 How 1Password Used esbuild to Cut Browser Extension Build Times 1Password is a popular password management tool that relie
👀 How 1Password Used esbuild to Cut Browser Extension Build Times 1Password is a popular password management tool that relies upon a browser extension to fill out passwords on the Web. At over a minute for a single build, things were starting to drag for the devs. Could esbuild help? A fun story with plenty of technical details. Jarek Samic

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  return 2;
}

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

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  yield* (function*() { yield 2; yield 3; })();
  yield 4;
}

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

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  yield 2;
  yield 3;
}

const gen1 = generator();
const gen2 = generator();

console.log(gen1.next().value);
console.log(gen2.next().value);
console.log(gen1.next().value);
console.log(gen2.next().value);

✨ Creating Realistic Handwriting with p5.js Amy wanted to programatically bring her (cursive) handwriting into some diagrams
Creating Realistic Handwriting with p5.js Amy wanted to programatically bring her (cursive) handwriting into some diagrams she was making and figured out how to make it happen with p5.js. Here's how. AMY GOODCHILD

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield* [1, 2, 3];
  yield 4;
}

const gen = generator();
console.log([...gen]);

🤔 City in a Bottle: Raycasting in 256 Bytes Frank has a great reputation for putting together stunning visual demos with the
🤔 City in a Bottle: Raycasting in 256 Bytes Frank has a great reputation for putting together stunning visual demos with the tiniest amounts of JavaScript. This is no exception. He goes into a lot of detail about how it works; you’ll learn a few things and/or come away awe-struck. FRANK FORCE

What is the output?
Anonymous voting

CHALLENGE

const obj = {
  a: 1,
  b: function() {
    return () => {
      return this.a;
    };
  },
  c: function() {
    return function() {
      return this.a;
    };
  }
};

const arrowFunc = obj.b();
const regularFunc = obj.c();

console.log(arrowFunc());
console.log(regularFunc());

🧠 Brainchop 4.0 An in-browser 3D MRI rendering system. (Demo.)
🧠 Brainchop 4.0 An in-browser 3D MRI rendering system. (Demo.)

What is the output?
Anonymous voting

CHALLENGE

console.log(1);

setTimeout(() => {
  console.log(2);
}, 100);

setTimeout(() => {
  console.log(3);
}, 0);

Promise.resolve().then(() => {
  console.log(4);
}).then(() => {
  console.log(5);
});

console.log(6);

What is the output?
Anonymous voting

CHALLENGE

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

Object.defineProperty(obj, 'a', {
  value: 2,
  writable: false,
  enumerable: true,
  configurable: false
});

console.log(obj.a);
proto.a = 3;
console.log(obj.a);