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

📊 Auditoriya ko‘rsatkichlari va dinamika

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

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

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 6.02% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 2.49% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 1 895 marta ko‘riladi; birinchi sutkada odatda 784 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 19 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 444
Obunachilar
-324 soatlar
+47 kunlar
-14830 kunlar
Postlar arxiv
✌️🤟 Math.js 14.0: An Extensive Math Library for Node and Browsers Work with complex numbers, fractions, units, matrices, sym
✌️🤟 Math.js 14.0: An Extensive Math Library for Node and Browsers Work with complex numbers, fractions, units, matrices, symbolic computation, etc. A long standing library now, but continuing to get frequent updates. GitHub repo. Jos de Jong

What is the output?
Anonymous voting

CHALLENGE

const obj = {
  a: 1,
  b: function() {
    return this.a;
  }
};
const b = obj.b;
console.log(b());

Deno v. Oracle: Cancelling the JavaScript Trademark Did you know Oracle formally owns the ‘JavaScript’ trademark? There have
Deno v. Oracle: Cancelling the JavaScript Trademark Did you know Oracle formally owns the ‘JavaScript’ trademark? There have been a few efforts to change this over the years (most recently via this open letter) but Oracle isn’t listening. The Deno team has now formally filed a petition to cancel the trademark which Deno claims is fradulent because Oracle used screenshots of Node.js, a project Oracle doesn’t even own, as evidence of the trademark’s use. Deno

What is the output?
Anonymous voting

CHALLENGE

console.log(0.1 + 0.2 === 0.3);

➕ Math.js 14.0: An Extensive Math Library for Node and Browsers Work with complex numbers, fractions, units, matrices, symbol
Math.js 14.0: An Extensive Math Library for Node and Browsers Work with complex numbers, fractions, units, matrices, symbolic computation, etc. A long standing library now, but continuing to get frequent updates. GitHub repo. Jos de Jong

What is the output?
Anonymous voting

CHALLENGE

const obj = { a: 1 };
Object.seal(obj);
obj.b = 2;
console.log(obj.b);

What is the output?
Anonymous voting

CHALLENGE

const arr = [1, 2];
arr.length = 0;
console.log(arr[0]);

😆
😆

What is the output?
Anonymous voting

CHALLENGE

const obj = {};
Object.defineProperty(obj, "prop", {
  value: 42,
  writable: false
});
obj.prop = 100;
console.log(obj.prop);

👀 Viselect: Let Users Visually Select DOM Elements If you’ve got a variety of elements and you want users to be able to sele
👀 Viselect: Let Users Visually Select DOM Elements If you’ve got a variety of elements and you want users to be able to select them in groups, individually, or even in multiple groups, this lets you offer that functionality easily. Can be used in a vanilla fashion or with integrations for P/React or Vue.js. Simon Reinisch

What is the output?
Anonymous voting

CHALLENGE

const x = (() => {
  try {
    return 10;
  } finally {
    return 20;
  }
})();
console.log(x);

✌️ Importing a Frontend JavaScript Library Without a Build System Many developers prefer to eschew complex, modern build proc
✌️ Importing a Frontend JavaScript Library Without a Build System Many developers prefer to eschew complex, modern build processes and use JavaScript in a more old-school way. You can definitely get by without a build system, and Julia explores some ways to import libraries in such a setup. Julia Evans