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

📊 Auditoriya ko‘rsatkichlari va dinamika

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

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

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 5.80% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 2.10% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 1 821 marta ko‘riladi; birinchi sutkada odatda 660 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 22 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 396
Obunachilar
-924 soatlar
-257 kunlar
-16930 kunlar
Postlar arxiv
👀 pnpm 9.0: The Efficiency-Focused Package Manager pnpm has long been a fantastic option for folks looking to save disk spac
👀 pnpm 9.0: The Efficiency-Focused Package Manager pnpm has long been a fantastic option for folks looking to save disk space and CPU cycles (or for its great monorepo support) while maintaining most of what makes npm great. v9.0 drops Node 16 and 17 compatibility, honors the packageManager field in package.json, makes some default config changes, and adopts Lockfile v9. PNPM

What is the output?
Anonymous voting

CHALLENGE

const arr = [];
arr[100] = 'a';
console.log(arr.length);

🤟 A Node.js Streams Masterclass What a treat! Join the creator of Fastify, as well as Node.js TSC member, on an hour long od
🤟 A Node.js Streams Masterclass What a treat! Join the creator of Fastify, as well as Node.js TSC member, on an hour long odyssey into the world of streams, a topic in which he specializes. He starts off quite poetically .. a stream is like an array over time .. before quickly getting on to some live coding and demos. This is one in a series of events put on by Platformatic. (75 minutes.) MATTEO COLLINA

What is the output?
Anonymous voting

CHALLENGE

const obj = { length: 3 };
console.log(Object.keys(obj).length);

😂
😂

What is the output?
Anonymous voting

CHALLENGE

const obj = {};
Object.defineProperty(obj, 'length', { get: () => Math.random() });
console.log(obj.length);

What is the output?
Anonymous voting

CHALLENGE

const obj = {};
obj.length = 5;
console.log(obj.length);

🔥 Visualizing Algorithms This fantastic post is now ten years old, but I revisited it recently and it’s such a joy. Mike Bos
🔥 Visualizing Algorithms This fantastic post is now ten years old, but I revisited it recently and it’s such a joy. Mike Bostock (of D3.js fame) visually guides us through some algorithms using both demos and code. MIKE BOSTOCK

What is the output?
Anonymous voting

CHALLENGE

const clothes = ['shirt', 'socks', 'jacket', 'pants', 'hat']
clothes.length = 0
 
console.log(clothes[3])

🥶 Building a CLI from Scratch with TypeScript and oclif oclif is a mature CLI tool development framework maintained by Sales
🥶 Building a CLI from Scratch with TypeScript and oclif oclif is a mature CLI tool development framework maintained by Salesforce. This tutorial goes from zero to something that works. JOSH CUNNINGHAM

What is the output?
Anonymous voting

CHALLENGE

function Person(name) {
  this.name = name;
}
Person.prototype.getName = function() {
  return this.name;
}
var person1 = new Person('Alice');
console.log(person1.hasOwnProperty('getName'));

👀 Quill 2.0: A Powerful Rich Text Editor for the Web A major release and significant modernization for the open source WYSIW
👀 Quill 2.0: A Powerful Rich Text Editor for the Web A major release and significant modernization for the open source WYSIWYG editor. In Announcing Quill 2.0, we learn about Quill’s transition to TypeScript and improved use of modern browser features, but there’s more going on too, such as its ESM packaging. Want to play with some code? There’s a playground. SLAB INC.

What is the output?
Anonymous voting