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
CHALLENGE
function* counter() {
  let count = 1;
  while (true) {
    const reset = yield count;
    count = reset ? 1 : count + 1;
  }
}

const gen = counter();
console.log(gen.next().value);
console.log(gen.next().value);
console.log(gen.next(true).value);
console.log(gen.next().value);

🤔 TanStack Form v1.0: Headless, Type-Safe Form State Management A type-safe, framework agnostic (React, Vue, Angular, Solid
🤔 TanStack Form v1.0: Headless, Type-Safe Form State Management A type-safe, framework agnostic (React, Vue, Angular, Solid and Lit are all supported out of the box), headless and isomorphic way to create and work with forms, with this v1.0 release over two years in the making. If you already use things like Formik or React Hook Form and are wondering how it differs, here’s a comparison table. Tanner Linsley

What is the output?
Anonymous voting

CHALLENGE
async function fetchData() {
  const promise = new Promise(resolve => {
    setTimeout(() => resolve('first'), 2000);
  });
  
  console.log('start');
  const result = await promise;
  console.log(result);
  console.log('end');
}

fetchData();
const x = 'after';
console.log(x);

✌️ JavaScript Fatigue Strikes Back A developer with ‘a decade away’ from writing JavaScript returns to find that one thing ha
✌️ JavaScript Fatigue Strikes Back A developer with ‘a decade away’ from writing JavaScript returns to find that one thing hasn’t changed: “Choosing the right JavaScript framework is hard, man.” Allen Pike

What is the output?
Anonymous voting

CHALLENGE
const handler = {
  get: (target, prop) => {
    if (prop in target) {
      return target[prop] * 2;
    }
    return 100;
  }
};

const nums = new Proxy({ a: 5, b: 10 }, handler);
console.log(nums.a, nums.b, nums.c);

What is the output?
Anonymous voting

CHALLENGE
const team = {
  captain: { name: 'Jack', age: 35 },
  players: ['Bob', 'Alice', 'Mike'],
  details: { founded: 2020, league: 'Premier' }
};

const { 
  captain: { name }, 
  players: [, second],
  details: { league: division = 'Amateur' } 
} = team;

console.log(`${name}-${second}-${division}`);

👍 Electron App Boilerplate with Modern Dependencies A basic template app that uses React 19, Tailwind CSS 4, shadcn/ui, Elec
👍 Electron App Boilerplate with Modern Dependencies A basic template app that uses React 19, Tailwind CSS 4, shadcn/ui, Electron Vite, Biome, and includes a GitHub Actions release workflow. Dalton Menezes

What is the output?
Anonymous voting

CHALLENGE
const config = {
  port: 0,
  timeout: null,
  retries: '',
  cache: false,
  debug: undefined
};

const port = config.port ?? 3000;
const timeout = config.timeout ?? 5000;
const retries = config.retries ?? 3;
const cache = config.cache ?? true;
const debug = config.debug ?? false;

console.log([port, timeout, retries, cache, debug]);

🥶 Announcing TypeScript 5.8 Four months in the making, TypeScript 5.8 lands with a strong Node focus. You can now use requir
🥶 Announcing TypeScript 5.8 Four months in the making, TypeScript 5.8 lands with a strong Node focus. You can now use require() for ES modules in the nodenext module, there’s a new node18 module for developers who want to keep targeting Node 18, and most notably there’s now an --erasableSyntaxOnly option to ensure no TypeScript-only runtime semantics can be used (ideal if you’re using Node’s type stripping features to run TypeScript code directly). Microsoft

What is the output?
Anonymous voting

CHALLENGE
async function demo() {
  console.log('1');
  
  setTimeout(() => console.log('2'), 0);
  
  Promise.resolve().then(() => {
    console.log('3');
    setTimeout(() => console.log('4'), 0);
  });
  
  await Promise.resolve();
  console.log('5');
  
  queueMicrotask(() => console.log('6'));
}

demo();
console.log('7');

What is the output?
Anonymous voting

CHALLENGE
function* range(start, end) {
  let current = start;
  while (current <= end) {
    if (current % 3 === 0) {
      current++;
      continue;
    }
    yield current++;
  }
}

const gen = range(4, 10);
const result = [...gen];
console.log(result);

😱 Multiple Window 3D Scene using Three.js A quick example of how one can "synchronize" a 3d scene across multiple windows using three.js and localStorage bgstaal

What is the output?
Anonymous voting