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 377 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 377 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 377
Obunachilar
-924 soatlar
-257 kunlar
-16930 kunlar
Postlar arxiv
🤟 __dirname is Back in Node with ES Modules In an ES module, instead of using __dirname or __filename, you can now use import.meta.dirname and import.meta.filename (this came with Node 20.11.0 (LTS) released in January). PHIL NASH

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  yield 2;
  yield 3;
}
const gen = generator();
console.log(gen.next().value);
console.log(gen.next().value);

😂
😂

What is the output?
Anonymous voting

CHALLENGE

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

What is the output?
Anonymous voting

CHALLENGE

function foo() {
    let a = b = 0
    a++
    return a
}
 
foo()
console.log(typeof a)
console.log(typeof b)

🗣️ Why is it called a REST API when it wakes me up at 3 AM to fix it? Zach Wilson

What is the output?
Anonymous voting

CHALLENGE
let x = 5;
let result = typeof (x + "10");

console.log(result);

🍊 Atrament 4.0: Library for Smooth Canvas Drawing and Handwriting A small library for beautiful drawing and handwriting on c
🍊 Atrament 4.0: Library for Smooth Canvas Drawing and Handwriting A small library for beautiful drawing and handwriting on canvas elements. It’s been around for several years but v4.0 is almost a complete rewrite. GitHub repo. JAKUB FIALA

What is the output?
Anonymous voting

CHALLENGE

let arr = [1, 2, 3];

function modifyArray(array) {
  array.push(4);
}

modifyArray(arr.splice(1));
console.log(arr);

🤟 Runtime Compatibility Across JavaScript Runtimes Several developers have come together to build this convenient way to vis
🤟 Runtime Compatibility Across JavaScript Runtimes Several developers have come together to build this convenient way to visualize the compatibility of different Web APIs and JavaScript features across the ever increasing number of different runtimes (e.g. Bun, Deno, Node, LLRT..) TOM LIENARD ET AL. ✅ The item above reminds me of node.green, a visualization of JS feature support across versions of Node / V8, though it is nearly entirely green/Yes these days!

Thanks Samvel for the quiz!

What is the output?
Anonymous voting

CHALLENGE

console.log(new RegExp({}).test("mom"));

console.log(new RegExp({}).test("dad"));

🤟 Bringing require(esm) Joyee writes about landing experimental support for require()-ing synchronous ES modules in Node, a feature that has been a long time coming, due to both technical and cultural factors. JOYEE CHEUNG