uz
Feedback
JavaScript

JavaScript

Kanalga Telegram’da o‘tish

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

Ko'proq ko'rsatish

📈 Telegram kanali JavaScript analitikasi

JavaScript (@javascript) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 31 438 obunachidan iborat bo'lib, Texnologiyalar & Aralashmalar toifasida 4 369-o'rinni va Hindiston mintaqasida 13 408-o'rinni egallagan.

📊 Auditoriya ko‘rsatkichlari va dinamika

невідомо sanasidan buyon loyiha tez o‘sib, 31 438 obunachiga ega bo‘ldi.

18 Iyun, 2026 dagi oxirgi ma’lumotlarga ko‘ra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni -148 ga, so‘nggi 24 soatda esa -3 ga o‘zgardi va umumiy qamrov yuqori darajada qolmoqda.

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 6.02% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 2.49% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 1 895 marta ko‘riladi; birinchi sutkada odatda 784 ta ko‘rish yig‘iladi.
  • Reaksiyalar va o‘zaro ta’sir: Auditoriya faol: har bir postga o‘rtacha 7 ta reaksiya keladi.
  • Tematik yo‘nalishlar: Kontent javascript, console.log(gen.next().value, processdata, remix, acc kabi asosiy mavzularga jamlangan.

📝 Tavsif va kontent siyosati

Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida ta’riflaydi:
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

Yuqori yangilanish chastotasi (oxirgi ma’lumot 19 Iyun, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli bo‘lib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Texnologiyalar & Aralashmalar toifasidagi muhim ta’sir nuqtasiga aylantirishini ko‘rsatadi.

31 438
Obunachilar
-324 soatlar
+47 kunlar
-14830 kunlar
Postlar arxiv
CHALLENGE

const obj = { a: 10 };
console.log(obj.a && obj.b || 20);

What is the output?
Anonymous voting

CHALLENGE

function memoize(fn) {
  const cache = {};
  return (arg) => cache[arg] ?? (cache[arg] = fn(arg));
}

const square = memoize((n) => n * n);

console.log(square(5)); 
console.log(square(5)); 
console.log(square(6));

🤟 Transformers.js v3: Now You Can Run Transformers in Node.js A JavaScript port of Hugging Face’s transformers Python librar
🤟 Transformers.js v3: Now You Can Run Transformers in Node.js A JavaScript port of Hugging Face’s transformers Python library that makes it possible to run natural language, vision, and audio machine learning models. v3 adds WebGPU support and now supports Node (plus Deno and Bun) as well as the browser. 1200+ models are ready to run in areas like embeddings, text generation, and speech recognition (as with whisper-small). Hugging Face

What is the output?
Anonymous voting

CHALLENGE

console.log('A');

setTimeout(() => console.log('B'), 0);

Promise.resolve()
  .then(() => {
    console.log('C');
    return Promise.resolve();
  })
  .then(() => console.log('D'));

console.log('E');

👀 A neat way to find and tidy unused stuff in your projects Knip finds unused files, dependencies and exports in your JavaSc
👀 A neat way to find and tidy unused stuff in your projects Knip finds unused files, dependencies and exports in your JavaScript and TypeScript projects. Less code and dependencies lead to improved performance, less maintenance and easier refactorings. webpro-nl

What is the output?
Anonymous voting

CHALLENGE

console.log(typeof null);
console.log(typeof function () {});

🟠 Svelte 5 is Alive The long awaited next major release of Svelte, the compiler-driven JS UI framework, is the “most signifi
🟠 Svelte 5 is Alive The long awaited next major release of Svelte, the compiler-driven JS UI framework, is the “most significant release in the project’s history”, while remaining largely backwards compatible. A big addition is runes for explicitly declaring reactive state, but there’s much more besides. The official svelte.dev site has also undergone a big rebuild to act as an ‘omnisite’ for all things Svelte. The Svelte Team

What is the output?
Anonymous voting

CHALLENGE

const obj = {
  value: 10,
  getValue: function () {
    return () => this.value;
  }
};

const value = 20;
const getValue = obj.getValue();
console.log(getValue());

What is the output?
Anonymous voting

CHALLENGE

function Animal(name) {
  this.name = name;
}
Animal.prototype.sound = 'Generic sound';

const dog = new Animal('Dog');

Animal.prototype.sound = 'Bark';
console.log(dog.sound);

😉 Build a Sonic Infinite Runner Game Using Kaplay A two hour walkthrough of using the Kaplay game library (formerly known as
😉 Build a Sonic Infinite Runner Game Using Kaplay A two hour walkthrough of using the Kaplay game library (formerly known as Kaboom.js) to build a complete, if simple, Sonic-branded game. You can also play it here. JSLegendDev

What is the output?
Anonymous voting

CHALLENGE

async function test() {
  console.log(1);
  await new Promise(resolve => setTimeout(resolve, 1000));
  console.log(2);
  return 3;
}

console.log(4);
test().then(console.log);
console.log(5);