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 391 obunachidan iborat bo'lib, Texnologiyalar & Aralashmalar toifasida 4 368-o'rinni va Hindiston mintaqasida 13 234-o'rinni egallagan.

📊 Auditoriya ko‘rsatkichlari va dinamika

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

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

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 5.70% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 1.95% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 1 790 marta ko‘riladi; birinchi sutkada odatda 611 ta ko‘rish yig‘iladi.
  • Reaksiyalar va o‘zaro ta’sir: Auditoriya faol: har bir postga o‘rtacha 6 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 23 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 391
Obunachilar
-2924 soatlar
-707 kunlar
-19730 kunlar
Postlar arxiv
What is the output?
Anonymous voting

CHALLENGE

async function asyncQuiz() {
  console.log("Start");

  const promise1 = new Promise((resolve) => {
    setTimeout(() => resolve("Promise 1"), 1000);
  });

  const promise2 = new Promise((resolve) => {
    setTimeout(() => resolve("Promise 2"), 500);
  });

  console.log(await promise1);
  console.log(await promise2);

  console.log("End");
}

asyncQuiz();

☄️✌️ QuickJS: The Small, Embeddable JavaScript Engine Several years ago, Fabrice Bellard, the genius behind FFMPEG and JSLinux, built a tiny and complete JavaScript engine in C. It now supports ES2023 and its latest release adds top-level await in modules and its REPL, as well as support for some cutting edge JS features (changelog). FABRICE BELLARD

What is the output?
Anonymous voting

CHALLENGE

const matrix = [
  [1, 2, 3],
  [4, 5, 6],
  [7, 8, 9],
];

async function complexMatrixOperation(matrix) {
  const result = await Promise.all(matrix.map(async row => {
    return await Promise.all(row.map(async num => {
      if (num % 2 === 0) {
        return await new Promise(resolve => setTimeout(() => resolve(num * 3), 200));
      } else {
        return await new Promise(resolve => setTimeout(() => resolve(num * 2), 100));
      }
    }));
  }));

  console.log(result);
}

complexMatrixOperation(matrix);

Which mobile platform do you use?
Anonymous voting

👀 Alpine, HTMX, Astro Stack Wordle App With Full Source! Popular dev YouTuber Jack demonstrates building a Wordle clone with
👀 Alpine, HTMX, Astro Stack Wordle App With Full Source! Popular dev YouTuber Jack demonstrates building a Wordle clone with a modern Alpine, HTMX and Astro-based stack. Or you can go straight to the code, if you prefer. JACK HERRINGTON

What is the output?
Anonymous voting

CHALLENGE

function asyncSum(arr) {
  return arr.reduce(async (acc, num) => (await acc) + num, Promise.resolve(0));
}

async function computeTotal() {
  const result = await asyncSum([1, 2, 3, 4, 5]);
  console.log(result);
}

computeTotal();

CHALLENGE

function recursiveFibonacci(n) {
  return n <= 1 ? n : recursiveFibonacci(n - 1) + recursiveFibonacci(n - 2);
}

const result = recursiveFibonacci(6);

console.log(result);

CHALLENGE

const matrix = [
  [1, 2, 3],
  [4, 5, 6],
  [7, 8, 9],
];

async function complexMatrixOperation(matrix) {
  const result = await Promise.all(matrix.map(async row => {
    return await Promise.all(row.map(async num => {
      if (num % 2 === 0) {
        return await new Promise(resolve => setTimeout(() => resolve(num * 3), 200));
      } else {
        return await new Promise(resolve => setTimeout(() => resolve(num * 2), 100));
      }
    }));
  }));

  console.log(result);
}

complexMatrixOperation(matrix);

🤩 Heat.js: A Heat Map Visualization Library It has no dependencies, and is small, responsive, and themeable. GitHub repo. WI
🤩 Heat.js: A Heat Map Visualization Library It has no dependencies, and is small, responsive, and themeable. GitHub repo. WILLIAM TROUP

What is the output?
Anonymous voting

CHALLENGE

const array = [
  { name: 'Alice', age: 25 },
  { name: 'Bob', age: 30 },
  { name: 'Charlie', age: 22 },
];

const result = array.find(obj => obj.age === 30);

console.log(result);

☺️hehe
☺️hehe

What is the output?
Anonymous voting

CHALLENGE

const array = [
  { name: 'John', score: 80 },
  { name: 'Jane', score: 95 },
  { name: 'Doe', score: 88 },
];

const result = array.every(obj => obj.score >= 80);

console.log(result);

🤔 The AHA Stack: Another Way to Build Modern Webapps The AHA Stack is a full-stack webapp approach that brings together Astr
🤔 The AHA Stack: Another Way to Build Modern Webapps The AHA Stack is a full-stack webapp approach that brings together Astro, htmx, and Alpine.js, and where you send HTML over the wire. This is a fantastic showcase site that sells the idea well, complete with explanations and examples. FLAVIO COPES

What is the output?
Anonymous voting

CHALLENGE

async function complexAsyncFunction() {
  const promise1 = new Promise(resolve => setTimeout(() => resolve(10), 1000));
  const promise2 = new Promise(resolve => setTimeout(() => resolve(20), 500));

  const result = await Promise.race([promise1, promise2]);

  console.log(result);
}

complexAsyncFunction();