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

📊 Auditoriya ko‘rsatkichlari va dinamika

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

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

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 5.88% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 2.24% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 1 848 marta ko‘riladi; birinchi sutkada odatda 705 ta ko‘rish yig‘iladi.
  • Reaksiyalar va o‘zaro ta’sir: Auditoriya faol: har bir postga o‘rtacha 6 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 21 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 406
Obunachilar
-2024 soatlar
-307 kunlar
-16430 kunlar
Postlar arxiv
QUICK BITS: 🤝 It hasn't been finalized yet, but the Node team is working on a Node.js Advocacy Ambassador program where the team will nominate a group of annual ambassadors to help in spreading the word about various Node.js topics. ⚠️ If you haven't taken the official Node.js Next 10 Survey yet, please do! Entries close this Friday, May 24, and your input will help steer future core team decisions. ‼️ Talking of surveys, the 2024 Stack Overflow developer survey has just gone live. It's open till June 7.

What is the output?
Anonymous voting

CHALLENGE

let obj = {};
Object.defineProperty(obj, 'a', {
  value: 1,
  enumerable: true
});

let clone = Object.create(
  Object.getPrototypeOf(obj),
  Object.getOwnPropertyDescriptors(obj)
);

console.log(clone.a);
console.log(clone.hasOwnProperty('a'));

What is the output?
Anonymous voting

CHALLENGE

let obj = { a: 1 };
Object.freeze(obj);

console.log(Object.isFrozen(obj));
console.log(obj.a = 2);
console.log(obj.a);

🤟 Node v22.2.0 (Current) Released A less significant release, feature-wise, than 22.0 or 22.1, but lots of little bug fixes,
🤟 Node v22.2.0 (Current) Released A less significant release, feature-wise, than 22.0 or 22.1, but lots of little bug fixes, tweaks around core dev experience, getting Node’s built-in ESLint rules ready for ESLint v9, and the ՝--inspect-wait՝ flag to make the debugger wait for a connection in order to debug code from the very start of execution. MICHAËL ZASSO

What is the output?
Anonymous voting

CHALLENGE

let obj = { a: 1 };
let proto = { b: 2 };

Object.setPrototypeOf(obj, proto);

for (let key in obj) {
  console.log(key);
}

😆 True...
😆 True...

What is the output?
Anonymous voting

CHALLENGE

function A() {}
A.prototype.value = 1;

function B() {}
B.prototype = new A();

B.prototype.value = 2;

var b = new B();
console.log(b.value);

🌲 GraphQL Yoga: A Full-Featured GraphQL Server Create a schema, spin up a server, and you’re good to go (then you get to wir
🌲 GraphQL Yoga: A Full-Featured GraphQL Server Create a schema, spin up a server, and you’re good to go (then you get to wire everything up). Supports GraphQL subscriptions via SSE. Designed to run across numerous environments from Node to AWS Lambda, Deno, Bun etc. GitHub repo. THE GUILD

What is the output?
Anonymous voting

CHALLENGE

function X() {}
X.prototype.getValue = function() {
  return this.value;
};

function Y() {
  this.value = 42;
}
Y.prototype = Object.create(X.prototype);
Y.prototype.constructor = Y;

var y = new Y();
console.log(y.getValue());

📖 Code Screenshot: A VS Code Extension to Create Code Screenshots It basically loads your code into this site (which you can
📖 Code Screenshot: A VS Code Extension to Create Code Screenshots It basically loads your code into this site (which you can use directly, if you'd rather not install an extension) where you can tweak settings/theme and export to either a PNG or SVG. VKRSI / VISUAL STUDIO MARKETPLACE

What is the output?
Anonymous voting

CHALLENGE

function Person() {}

var person = new Person();

console.log(person instanceof Person);
console.log(person instanceof Object);

🕹️ Athena Crisis: A Quality, JS-Powered Game A commercial, turn-based strategy game available on the Steam Store, but now wi
🕹️ Athena Crisis: A Quality, JS-Powered Game A commercial, turn-based strategy game available on the Steam Store, but now with an open sourced engine and tooling. The game is published by Null, an indie game publisher founded by GitHub cofounder Chris Wanstrath. CHRISTOPH NAKAZAWA