JavaScript
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 258 suscriptores, ocupando la posición 4 178 en la categoría Tecnologías y Aplicaciones y el puesto 13 046 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 258 suscriptores.
Según los últimos datos del 26 agosto, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de -81, y en las últimas 24 horas de 1, 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.06%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 2.44% de reacciones respecto al total de suscriptores.
- Alcance de las publicaciones: Cada publicación recibe en promedio 1 894 visualizaciones. En el primer día suele acumular 763 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 27 agosto, 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.
Carga de datos en curso...
| Fecha | Crecimiento de Suscriptores | Menciones | Canales | |
| 26 agosto | +11 | |||
| 25 agosto | +8 | |||
| 24 agosto | +9 | |||
| 23 agosto | +17 | |||
| 22 agosto | +4 | |||
| 21 agosto | 0 | |||
| 20 agosto | +29 | |||
| 19 agosto | +9 | |||
| 18 agosto | +4 | |||
| 17 agosto | +21 | |||
| 16 agosto | +18 | |||
| 15 agosto | +13 | |||
| 14 agosto | +10 | |||
| 13 agosto | +12 | |||
| 12 agosto | +11 | |||
| 11 agosto | +48 | |||
| 10 agosto | +8 | |||
| 09 agosto | +12 | |||
| 08 agosto | +8 | |||
| 07 agosto | +6 | |||
| 06 agosto | +8 | |||
| 05 agosto | +10 | |||
| 04 agosto | +34 | |||
| 03 agosto | +10 | |||
| 02 agosto | +8 | |||
| 01 agosto | +23 |
| 2 | CHALLENGE
function makeFns() {
const result = [];
for (var i = 0; i < 3; i++) {
let j = i;
result.push(() => i + j);
}
return result;
}
const fns = makeFns();
console.log(fns.map(f => f()).join(',')); | 609 |
| 3 | What is the output? | 944 |
| 4 | CHALLENGE
const arr = [1, [2, 3], { a: 4 }];
const copy = [...arr];
copy[1].push(99);
copy[2].a = 100;
arr[0] = 999;
console.log(arr[0], arr[1], arr[2].a, copy[0]); | 916 |
| 5 | What is the output? | 1 128 |
| 6 | CHALLENGE
const a = Math.max();
const b = Math.min();
const c = 0.1 + 0.2 === 0.3;
const d = Math.max(1, NaN, 3);
const e = [1, 2, 3].reduce((sum, n) => sum + n, 0) / 3;
const f = Number.isInteger(5.0);
console.log(a, b, c, d, e, f); | 1 054 |
| 7 | What is the output? | 1 237 |
| 8 | CHALLENGE
function makeCounters() {
const counters = [];
for (var i = 0; i < 3; i++) {
let j = i;
counters.push(() => `${i}-${j}`);
}
return counters;
}
const [a, b, c] = makeCounters();
console.log(a(), b(), c());
export {}; | 1 103 |
| 9 | What is the output? | 1 362 |
| 10 | CHALLENGE
class EventBus {
#listeners = new Map();
on(event, fn) {
if (!this.#listeners.has(event)) this.#listeners.set(event, new Set());
this.#listeners.get(event).add(fn);
return () => this.#listeners.get(event).delete(fn);
}
emit(event, payload) {
this.#listeners.get(event)?.forEach(fn => fn(payload));
}
}
const bus = new EventBus();
const log = [];
const unsub = bus.on('data', v => log.push(`A:${v}`));
bus.on('data', v => log.push(`B:${v}`));
bus.emit('data', 1);
unsub();
bus.on('data', v => log.push(`C:${v}`));
bus.emit('data', 2);
console.log(log.join(',')); | 1 290 |
| 11 | What is the output? | 1 423 |
| 12 | CHALLENGE
function Person(name) {
if (!(this instanceof Person)) {
return new Person(name);
}
this.name = name;
}
Person.prototype.greet = function () {
return `Hi ${this.name}`;
};
function Widget(id) {
this.id = id;
return { id: id * 2 };
}
Widget.prototype.getId = function () {
return this.id;
};
const p1 = Person('Zed');
const p2 = new Person('Nova');
const w = new Widget(5);
console.log(p1.greet(), p2.greet(), w.id, w.getId); | 1 317 |
| 13 | 😮 DeepSeek Harness: DeepSeek's New Node-Powered Agent Harness
Today, the popular Chinese model lab unveiled its own Claude Code-alike and already racked up 30k stars. It's not a typical CLI harness, though, but runs through a web UI. Curiously, everything is a plugin, built atop Cordis, an existing Node plugin system whose author DeepSeek has hired. GitHub repo.
DeepSeek | 1 411 |
| 14 | What is the output? | 1 533 |
| 15 | CHALLENGE
const log = [];
Promise.resolve(1)
.then(v => { log.push('a'+v); return v+1; })
.then(v => { throw new Error('e'+v); })
.catch(e => { log.push(e.message); return 10; })
.then(v => { log.push('b'+v); });
Promise.resolve()
.then(() => log.push('c'))
.then(() => log.push('d'));
setTimeout(() => console.log(log.join(',')), 0); | 1 531 |
| 16 | ❓ TermDOM: Build Terminal UIs with HTML, CSS and the DOM
Like the look of Ink but don't like React? TermDOM implements a DOM, cascade and layout engine that paints to the terminal, so you can write a TUI with HTML and CSS. Pure JS, no native or WASM dependencies, and the official TodoMVC runs with only a stylesheet swap. Early days, but I like the idea!
Brian Kim | 1 600 |
| 17 | What is the output? | 1 558 |
| 18 | CHALLENGE
function curry(fn) {
return function curried(...args) {
if (args.length >= fn.length) {
return fn.apply(this, args);
}
return (...more) => curried.apply(this, args.concat(more));
};
}
function add(a, b, c = 10) {
return a + b + c;
}
const curriedAdd = curry(add);
console.log(`${curriedAdd(1)(2)} ${curriedAdd(1,2,3)} ${curriedAdd(4)(5,6)}`); | 1 603 |
| 19 | The js1024 code golfing contest is over and we have three winners! Skydreams, a Super Monkey Ball-like experience, came in first place. You can read the readable and minified source if you want to see the techniques used. | 1 523 |
| 20 | What is the output? | 1 689 |
