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

📊 Auditoriya ko‘rsatkichlari va dinamika

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

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

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 6.22% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 2.53% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 1 955 marta ko‘riladi; birinchi sutkada odatda 794 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 13 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 443
Obunachilar
-2624 soatlar
-807 kunlar
-21130 kunlar
Postlar arxiv
What is the output?
Anonymous voting

CHALLENGE
const data = '{"users": [{"name": "Sarah", "age": 25}, {"name": "Mike", "age": null}]}';

try {
  const parsed = JSON.parse(data);
  const result = parsed.users.map(user => {
    return user.age ?? 'unknown';
  });
  console.log(result.join(' - '));
} catch (error) {
  console.log('Parse error occurred');
}

const invalidJson = '{"name": "John", age: 30}';
try {
  JSON.parse(invalidJson);
  console.log('Success');
} catch {
  console.log('Invalid');
}

🥶 TSDiagram: Diagrams as Code with TypeScript Draft diagrams quickly with TypeScript. Define your data models through top-le
🥶 TSDiagram: Diagrams as Code with TypeScript Draft diagrams quickly with TypeScript. Define your data models through top-level type aliases and interfaces and it automatically lays out the nodes in an efficient way. GitHub repo. Andrei Neculaesei

What is the output?
Anonymous voting

CHALLENGE
const arr = [1, 2, 3];
const obj = { valueOf: () => 4, toString: () => '5' };
const result1 = arr + obj;
const result2 = +obj;
const result3 = String(obj);
const result4 = obj == 4;
const result5 = obj === 4;
console.log(`${result1}|${result2}|${result3}|${result4}|${result5}`);
const weird = [] + [] + 'hello';
const weirder = [] + {} + [];
const weirdest = {} + [] + {};
console.log(`${weird}|${weirder}|${weirdest}`);
const final = !!'0' + !!'' + !!null + !!undefined;
console.log(final);

🗓 FullCalendar: A Full Sized JavaScript Calendar Control Get a Google Calendar-style experience in your own apps. Has connec
🗓 FullCalendar: A Full Sized JavaScript Calendar Control Get a Google Calendar-style experience in your own apps. Has connectors for React, Vue and Angular, but can be used with plain JavaScript too. The base version is MIT licensed, but there’s a commercial version too with extra features. Adam Shaw

What is the output?
Anonymous voting

CHALLENGE
class SimpleObservable {
  constructor(subscribeFn) {
    this.subscribeFn = subscribeFn;
  }
  
  subscribe(observer) {
    return this.subscribeFn(observer);
  }
}

const obs = new SimpleObservable(observer => {
  observer.next('first');
  observer.next('second');
  observer.complete();
});

const results = [];
obs.subscribe({
  next: val => results.push(val),
  complete: () => results.push('done')
});

console.log(results.join('-'));

👀 The Performance Inequality Gap in 2026 Esteemed browser and Web standards expert Alex Russell looks at the state of client
👀 The Performance Inequality Gap in 2026 Esteemed browser and Web standards expert Alex Russell looks at the state of client-side Web performance, what sort of bandwidth you should be taking into account, what devices people are using, and warns against ever-growing JavaScript bundle sizes. A lot of data here. Alex Russell

What is the output?
Anonymous voting

CHALLENGE
const original = {
  name: 'Sarah',
  hobbies: ['reading', 'coding'],
  address: { city: 'Portland', zip: 97201 }
};

const shallow = { ...original };
const deep = JSON.parse(JSON.stringify(original));

shallow.name = 'Emma';
shallow.hobbies.push('hiking');
shallow.address.city = 'Seattle';

deep.hobbies.push('swimming');
deep.address.zip = 98101;

console.log(original.hobbies.length, original.address.city);

✌️ Over 150 Algorithms and Data Structures Demonstrated in JS Examples of many common algorithms (e.g. bit manipulation, Pasc
✌️ Over 150 Algorithms and Data Structures Demonstrated in JS Examples of many common algorithms (e.g. bit manipulation, Pascal’s triangle, Hamming distance) and data structures (e.g. linked lists, tries, graphs) with explanations. Available in eighteen other written languages too. Oleksii Trekhleb et al.

What is the output?
Anonymous voting

CHALLENGE
const user = {
  profile: {
    settings: {
      theme: 'dark',
      notifications: null
    }
  }
};

const result1 = user?.profile?.settings?.theme;
const result2 = user?.profile?.settings?.notifications?.email;
const result3 = user?.profile?.preferences?.language ?? 'en';
const result4 = user?.profile?.settings?.notifications?.push?.('test');

console.log(result1, result2, result3, result4);

😆
😆

📸 Google Announces Angular v21 The Google team has gone all out with this significant release of its popular JavaScript fram
📸 Google Announces Angular v21 The Google team has gone all out with this significant release of its popular JavaScript framework. They’ve put together a retro game-themed adventure-based tour of what’s new, along with top notch videos showing off features like its new signal-based approach to forms, MCP server for AI-powered workflows, library of headless components focused on accessibility, and even a new ‘Angular AI Tutor’ to get up to speed. Google

🔒 OWASP (Open Worldwide Application Security Project) has released its list of the top ten web application security threats
🔒 OWASP (Open Worldwide Application Security Project) has released its list of the top ten web application security threats in 2025.

😮 vis-timeline 8.4 – Interactive control to visualize data across time, as shown above. Numerous examples here.
😮 vis-timeline 8.4Interactive control to visualize data across time, as shown above. Numerous examples here.

👀 imgui-react-runtime: React + Dear ImGui + Static Hermes When the author teased a demo of this on X a few weeks ago, I wasn
👀 imgui-react-runtime: React + Dear ImGui + Static Hermes When the author teased a demo of this on X a few weeks ago, I wasn’t sure if it would get released, but here it is. A new way to put together native apps using React and the popular lightweight GUI library Dear ImGui. Tzvetan Mikov

What is the output?
Anonymous voting