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
🌲 Node v22.3.0 (Current) Released One of those releases where lots of tiny things have occurred, but little of broad signifi
🌲 Node v22.3.0 (Current) Released One of those releases where lots of tiny things have occurred, but little of broad significance, except… for snapshot testing! Snapshot tests serialize arbitrary values into string values to be compared against a set of pre-built known ‘good’ values (stored as a ‘snapshot’ representing a desired state). Rafael Gonzaga

What is the output?
Anonymous voting

CHALLENGE

async function asyncFunc() {
  return 'async';
}

function promiseFunc() {
  return new Promise(resolve => resolve('promise'));
}

(async function() {
  const result = await (true ? asyncFunc() : promiseFunc());
  console.log(result);
})();

What is the output?
Anonymous voting

CHALLENGE

const obj1 = { a: 1 };
const obj2 = { b: 2 };
Object.setPrototypeOf(obj2, obj1);

console.log('a' in obj2);
console.log(obj2.hasOwnProperty('a'));
console.log(obj2.__proto__.a);

What is the output?
Anonymous voting

CHALLENGE

const obj = {
  value: 1,
  method() {
    return this.value;
  }
};

const boundMethod = obj.method.bind({ value: 2 });
console.log(boundMethod());

🔵 How to Learn and Read effectively You read a book and enthusiastically highlighted every sentence. But let’s be honest, ho
🔵 How to Learn and Read effectively You read a book and enthusiastically highlighted every sentence. But let’s be honest, how often have you actually gone back to review those highlights? Probably not very often, if at all. Hovhannes Dallakyan

What is the output?
Anonymous voting

CHALLENGE

const sym = Symbol('unique');
const obj = {
  [sym]: 'symbol value',
  a: 1,
  b: 2
};

const keys = Object.keys(obj);
const symbols = Object.getOwnPropertySymbols(obj);

console.log(keys.length, symbols.length);

😎 Bread Jam: Make Variables and Properties Easier to See in VS Code An interesting new VS Code extension that offers 11 diff
😎 Bread Jam: Make Variables and Properties Easier to See in VS Code An interesting new VS Code extension that offers 11 different ways to make variable names stand out more in your editor, with both basic colorization approaches and an interesting emoji-based prefix option. Ting Wei Jing

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  yield 2;
  yield 3;
}

const gen = generator();

const { value, done } = gen.return('early');

console.log(value, done);

❓ DGM.js: Infinite Canvas Library with Smart Shapes A library for rendering and working with infinitely pannable canvases tha
DGM.js: Infinite Canvas Library with Smart Shapes A library for rendering and working with infinitely pannable canvases that contain ‘smart shapes’ that you can script and give various constraints and properties. GPLv3 licensed. Minkyu Lee

What is the output?
Anonymous voting

CHALLENGE

const sym1 = Symbol('sym');
const sym2 = Symbol('sym');

const obj = {
  [sym1]: 'value1',
  [sym2]: 'value2'
};

console.log(obj[sym1], obj[sym2], sym1 === sym2);

What is the output?
Anonymous voting