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

📊 Auditoriya ko‘rsatkichlari va dinamika

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

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

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 6.21% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 2.59% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 1 952 marta ko‘riladi; birinchi sutkada odatda 813 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 16 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 453
Obunachilar
+1624 soatlar
-137 kunlar
-17430 kunlar
Postlar arxiv
👀 Mastra: A TypeScript AI Framework from the Gatsby Team — From some of the folks behind the Gatsby React framework comes a
👀 Mastra: A TypeScript AI Framework from the Gatsby Team — From some of the folks behind the Gatsby React framework comes a new way to build LLM-powered agents that perform various tasks, use knowledge bases, and hold memory. Think a meta-framework like Next.js but for AI agents. GitHub repo. Mastra

What is the output?
Anonymous voting

CHALLENGE
function trickyScope() {
    let x = 10;
    if (true) {
        let x = 20;
        console.log(x); // A
    }
    console.log(x); // B
    {
        let x = 30;
        console.log(x); // C
    }
    console.log(x); // D
}

trickyScope();

✌️ Do Lake Names Reflect Their Properties? I know this sounds like a geographical piece, but this developer’s curiosity led t
✌️ Do Lake Names Reflect Their Properties? I know this sounds like a geographical piece, but this developer’s curiosity led to a fun blend of JavaScript and the always useful Overpass Turbo mapping tool. Ivan Ludvig

What is the output?
Anonymous voting

CHALLENGE
function trickyFunction(num) {  
  let result = 0;  
  for (let i = 0; i < num; i++) {  
    result += i;  
    if (i % 2 === 0) {  
      result *= 2;  
    } else {  
      result -= 1;  
    }  
  }  
  return result;  
}  
console.log(trickyFunction(4));

What is the output?
Anonymous voting

CHALLENGE
function trickyScope() {
  var a = 10;
  let b = 20;
  const c = 30;

  if (true) {
    var a = 40;
    let b = 50;
    const c = 60;
    console.log(a, b, c);
  }

  console.log(a, b, c);
}

trickyScope();

What is the output?
Anonymous voting

CHALLENGE
function trickyScope() {
  var x = 10;
  if (true) {
    let x = 5;
    console.log(x);
  }
  console.log(x);
}

trickyScope();

👍 Heat.js: A Heat Map Visualization Library Think the GitHub contributions heat map. No dependencies, small, responsive, and
👍 Heat.js: A Heat Map Visualization Library Think the GitHub contributions heat map. No dependencies, small, responsive, and theme-able. There’s a live demo or its GitHub repo. William Troup

What is the output?
Anonymous voting

CHALLENGE
const sym1 = Symbol('description');
const sym2 = Symbol('description');

const obj = {
  [sym1]: 'value1',
  [sym2]: 'value2'
};

console.log(obj[sym1]);

What is the output?
Anonymous voting

CHALLENGE
const numbers = [1, 2, 3, 4, 5];

const result = numbers
  .filter(num => num % 2 === 0)
  .map(num => num * num)
  .reduce((acc, num) => acc + num, 0);

console.log(result);

About the post above ☝️ 😂
About the post above ☝️ 😂

photo content
+1

What is the output?
Anonymous voting