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

📊 Auditoriya ko‘rsatkichlari va dinamika

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

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

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 6.22% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 2.53% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 1 955 marta ko‘riladi; birinchi sutkada odatda 794 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 13 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 441
Obunachilar
-2624 soatlar
-807 kunlar
-21130 kunlar
Postlar arxiv
🌟 Bun v1.3.10 Released: A Surprisingly Big Update Bun’s REPL has been completely rewritten with many improvements (both prac
🌟 Bun v1.3.10 Released: A Surprisingly Big Update Bun’s REPL has been completely rewritten with many improvements (both practical and cosmetic), there's a --compile --target=browser option for building self-contained HTML files with all JS, CSS, and assets included (ideal for simple JS-powered single page apps), full support for TC39 stage 3 ES decorators, a faster event loop, barrel import optimization, and more. Jarred Sumner

What is the output?
Anonymous voting

CHALLENGE


const a = 10n ** 3n;
const b = BigInt(Number.MAX_SAFE_INTEGER) + 1n;
const c = b - BigInt(Number.MAX_SAFE_INTEGER);

const results = {
  power: a,
  safe: c,
  type: typeof a,
  equal: 10n == 10,
  strict: 10n === 10,
};

console.log(
  results.power,
  results.safe,
  results.type,
  results.equal,
  results.strict
);

What is the output?
Anonymous voting

CHALLENGE
const name = "Zara";
const age = 28;
const role = "engineer";

const user = { name, age, role };

const { name: fullName, age: years, role: position = "developer" } = user;

const greet = ({ name, age }) => `${name} is ${age}`;

const team = [
  { name: "Zara", age: 28 },
  { name: "Leo",  age: 34 },
];

const [{ name: first }, { age: secondAge }] = team;

console.log(`${fullName}, ${years}, ${position} | ${first}, ${secondAge}`);

🤟 Node.js EventLoop Lag + Kafka Consumer Lag: One Root Cause The 3-Second Production Mystery That Took Me 20 Days to Solve T
🤟 Node.js EventLoop Lag + Kafka Consumer Lag: One Root Cause The 3-Second Production Mystery That Took Me 20 Days to Solve This is a story about how we found a 3s EventLoop lag (p99) in one of our microservices while exploring the Kafka consumer lag… and how I tracked it down and fixed. It’s Feb 6. I notice an increase in Kafka lag in our Grafana chart... nairihar

😮 numpy-ts: A NumPy Implementation for TypeScript NumPy is a fundamental piece of the Python scientific computing ecosystem
😮 numpy-ts: A NumPy Implementation for TypeScript NumPy is a fundamental piece of the Python scientific computing ecosystem and well-entrenched in many use cases. JavaScript has some options in this regard (e.g. TensorFlow.js), but numpy-ts is an attempt to replace the NumPy experience as closely as possible (currently at 94% API coverage). There’s an online playground if you want to give it a quick spin. Nicolas Dupont

What is the output?
Anonymous voting

CHALLENGE

let x = 'global';

function testScope() {
  console.log(x);
  
  if (true) {
    let x = 'block';
    var y = 'function';
    console.log(x);
  }
  
  console.log(x);
  console.log(y);
}

testScope();

👀 AdonisJS v7 Released: 'Batteries-Included' Node.js Framework A popular webapp framework that includes auth, ORM, queues, t
👀 AdonisJS v7 Released: 'Batteries-Included' Node.js Framework A popular webapp framework that includes auth, ORM, queues, testing, etc. in a cohesive fashion. With v7 comes an all new web site, modernizations, OpenTelemetry integration, new starter kits to rapidly build new apps, barrel file generation, and end-to-end type safety. Harminder Virk

What is the output?
Anonymous voting

CHALLENGE

const user = {
  profile: {
    getName: () => "Marcus",
    getAge: () => 30,
  },
  settings: null,
};

const name = user.profile?.getName?.();
const age = user.profile?.getAge?.();
const theme = user.settings?.getTheme?.() ?? "dark";
const lang = user.address?.getLocale?.() ?? "en-US";

console.log(`${name} | ${age} | ${theme} | ${lang}`);

🫶 Play with a complete Windows 3.11 environment in your browser. A lot of fun! There's a recreation of 90s search engine Alt
🫶 Play with a complete Windows 3.11 environment in your browser. A lot of fun! There's a recreation of 90s search engine Altavista (above), a version of mIRC that connects to an actual IRC server, and a variety of classic games.

What is the output?
Anonymous voting

CHALLENGE


const inventory = {
  apples: 5,
  bananas: 0,
  cherries: 12,
  dates: undefined,
  elderberries: null,
};

const summary = Object.entries(inventory)
  .filter(([_, value]) => value)
  .reduce((acc, [key, value]) => {
    acc[key] = value * 2;
    return acc;
  }, {});

console.log(Object.keys(summary).length);
console.log(Object.values(summary).every(v => v > 10));
console.log(Object.keys(inventory).length === Object.keys(summary).length);

⚡️ Beautiful Mermaid 1.0 Render Mermaid diagram markup to SVG or ASCII/Unicode outputs (above) from JavaScript.
⚡️ Beautiful Mermaid 1.0 Render Mermaid diagram markup to SVG or ASCII/Unicode outputs (above) from JavaScript.

What is the output?
Anonymous voting

CHALLENGE

class Session {
  #id;
  constructor(id) {
    this.#id = id;
  }
  getId() { return this.#id; }
}

const activeSessions = new WeakSet();

const s1 = new Session("user_42");
const s2 = new Session("user_99");
let s3 = new Session("user_07");

activeSessions.add(s1);
activeSessions.add(s2);
activeSessions.add(s3);

console.log(activeSessions.has(s1));         // line A
console.log(activeSessions.has(s3));         // line B

s3 = null;

console.log(activeSessions.has(s3));         // line C

activeSessions.delete(s2);
console.log(activeSessions.has(s2));         // line D
console.log(activeSessions.size);            // line E

😃 OpenSeadragon 6.0: A Web Viewer for High Resolution Images A big step forward for a project that’s almost 15 years old, an
😃 OpenSeadragon 6.0: A Web Viewer for High Resolution Images A big step forward for a project that’s almost 15 years old, and one of few stable, trusty options for rendering ultra-high resolution images for users to zoom into and pan around. Version 6 introduces a new async and cache-managed pipeline, making it far more efficient at scale. OpenSeadragon Contributors