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 440 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 440 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 440
Obunachilar
+1624 soatlar
-137 kunlar
-17430 kunlar
Postlar arxiv
😱 jscanify 1.3: JavaScript Document Scanning Library Given raw photos of documents, this can do paper detection (along with
😱 jscanify 1.3: JavaScript Document Scanning Library Given raw photos of documents, this can do paper detection (along with glare suppression), distortion correction, highlighting and extracting. See some visual examples or try it out here. ColonelParrot

What is the output?
Anonymous voting

CHALLENGE
const wm = new WeakMap();
const obj1 = {};
const obj2 = {};
wm.set(obj1, 'object 1');
wm.set(obj2, 'object 2');
wm.delete(obj1);
console.log(wm.has(obj1));

🤨 docxtemplater: Generate docx and pptx Documents from Templates Generate Word and PowerPoint files dynamically by merging a
🤨 docxtemplater: Generate docx and pptx Documents from Templates Generate Word and PowerPoint files dynamically by merging against templates (ideal for invoices, contracts, certificates, etc.) It’s open source (MIT or GPLv3), but the creator has a commercial version with more extensions (e.g. to work with Excel). GitHub repo and feature demos. Edgar Hipp

What is the output?
Anonymous voting

CHALLENGE

let symbol1 = Symbol('description');
let symbol2 = Symbol('description');

const obj = {
  [symbol1]: 'value1',
  [symbol2]: 'value2'
};

console.log(obj[symbol1]);
console.log(symbol1 === symbol2);

🤟 The Modern Way to Write JavaScript Servers The irony is that while Node popularized JavaScript on the server (though Netsc
🤟 The Modern Way to Write JavaScript Servers The irony is that while Node popularized JavaScript on the server (though Netscape was doing it in the 90s) this modern, standardized cross-runtime approach doesn’t work on Node ...yet ;-) Marvin Hagemeister

What is the output?
Anonymous voting

CHALLENGE
function tricky() {
  let a = 1;
  let b = 2;
  const result = (function(a) {
    a = 3;
    return a + b;
  })(a);
  return result;
}

console.log(tricky());

What is the output?
Anonymous voting

CHALLENGE
function mysteriousFunction(a) {
  let result = 0;
  for (let i = 1; i <= a; i++) {
    if (i % 3 === 0 && i % 5 === 0) {
      result += i * 2;
    } else if (i % 3 === 0) {
      result += i;
    } else if (i % 5 === 0) {
      result -= i;
    }
  }
  return result;
}

console.log(mysteriousFunction(15));

🤔 Things People Get Wrong About Electron A long-time maintainer of the wildly successful Electron cross-platform app framewo
🤔 Things People Get Wrong About Electron A long-time maintainer of the wildly successful Electron cross-platform app framework stands by the technical choices Electron has made over the years and defends it against some of the more common criticisms here. Felix Rieseberg

What is the output?
Anonymous voting

CHALLENGE
function mystery(x) {
  return (function(y) {
    return x + y;
  })(x * 2);
}

const result1 = mystery(2);
const result2 = mystery(5);
const result3 = mystery(-1);

console.log(result1, result2, result3);

What is the output?
Anonymous voting

CHALLENGE
function trickyCount(n) {
  if (n <= 1) return n;
  return trickyCount(n - 1) + trickyCount(n - 2);
}

function wrapCount(n) {
  return trickyCount(n) - trickyCount(n - 4);
}

console.log(wrapCount(6));

⛽️ A Failed Attempt to Shrink All npm Packages by 5% What if you could shrink all npm package sizes by 5%.. wouldn’t that ben
⛽️ A Failed Attempt to Shrink All npm Packages by 5% What if you could shrink all npm package sizes by 5%.. wouldn’t that benefit all of us? Here’s how one developer did just that using Zopfli compression and then made a proposal to the npm maintainers to implement it. While promising, the proposal was ultimately rejected due to a variety of challenges and trade-offs, such as slower publishing speeds. Nonetheless, it’s a good story packed with things to learn from. Evan Hahn

What is the output?
Anonymous voting

CHALLENGE
var arr = Array.from({ length: 5 }, (v, i) => i * 2);
console.log(arr);