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

📊 Auditoriya ko‘rsatkichlari va dinamika

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

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

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 6.21% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 2.59% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 1 952 marta ko‘riladi; birinchi sutkada odatda 813 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 16 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 440
Obunachilar
+1624 soatlar
-137 kunlar
-17430 kunlar
Postlar arxiv
What is the output?
Anonymous voting

CHALLENGE
var obj = {
  a: 10,
  b: 20
};

with (obj) {
  var result = a + b;
}

console.log(result);

What is the output?
Anonymous voting

CHALLENGE
function getNextWeekday(dateString) {
    const date = new Date(dateString);
    const day = date.getDay();
    const diff = (day === 0 ? 1 : 8) - day;
    date.setDate(date.getDate() + diff);
    return date.toDateString();
}

console.log(getNextWeekday('2023-10-20'));

🥶 2ality – JavaScript and more In order to feel more confident about my tsconfig.json, I decided to go through the tsconfig.
🥶 2ality – JavaScript and more In order to feel more confident about my tsconfig.json, I decided to go through the tsconfig.json documentation, collect all commonly used options and describe them below... Axel Rauschmayer

What is the output?
Anonymous voting

CHALLENGE
function* numberGenerator() { 
 for (let i = 0; i < 3; i++) { 
 yield i * 2; 
 } 
} 

const numbers = [...numberGenerator()]; 

console.log(numbers);

🤨 Chess.js: A Library to Manage a Chess Game Provides move generation, validation, piece placement, check/checkmate/stalemat
🤨 Chess.js: A Library to Manage a Chess Game Provides move generation, validation, piece placement, check/checkmate/stalemate detection – "everything but the AI!" v1.0 offers a rewrite to TypeScript and a variety of enhancements. Jeff Hlywa

What is the output?
Anonymous voting

CHALLENGE
function trickyArgs(a, b, c) {
  arguments[0] = 10;
  arguments[1] = 20;
  arguments[2] = 30;
  console.log(a + b + c);
}
trickyArgs(1, 2, 3);

👀 Learn Yjs and Building Realtime Collaborative Apps in JavaScript Yjs is a CRDT (Conflict-free replicated data type) librar
👀 Learn Yjs and Building Realtime Collaborative Apps in JavaScript Yjs is a CRDT (Conflict-free replicated data type) library for building collaborative and local-first apps. CDRTs are powerful but can be tricky to ‘get’ which is why this new interactive Yjs tutorial is so valuable. A great way to learn about building collaborative, syncing webapps from the ground up. Jamsocket

What is the output?
Anonymous voting

CHALLENGE
class Vehicle {
  static type() {
    return "Generic Vehicle";
  }
}

class Car extends Vehicle {
  static type() {
    return "Car";
  }
}

console.log(Car.type());

😎 Node Web Audio API 1.0: A Web Audio API Implementation for Node More accurately, it’s a set of Node bindings for a Rust-po
😎 Node Web Audio API 1.0: A Web Audio API Implementation for Node More accurately, it’s a set of Node bindings for a Rust-powered non-browser implementation of the Web Audio API. IRCAM – Centre Pompidou

What is the output?
Anonymous voting

CHALLENGE
function multiply(a, b = a * 2) {
  return a * b;
}

console.log(multiply(3));

🤟 A New Chapter for Express.js 2024 saw the still-extremely-popular Express project awaken from a slumber, of sorts, with wo
🤟 A New Chapter for Express.js 2024 saw the still-extremely-popular Express project awaken from a slumber, of sorts, with work being made to update things to modern standards, a security audit, and the release of Express v5. Here, the team explains what’s been going on behind the scenes to get Express back on the tracks, as well as a “bold vision for 2025.” Express Technical Committee

What is the output?
Anonymous voting

CHALLENGE
const a = '10';
const b = 20;
const c = '30.5';

const result = Number(a) + b + Number.parseFloat(c);

console.log(result);

❄️ The 'WinterCG' Web Interoperable Runtimes Community Group, an effort to promote standards around runtime interoperability
❄️ The 'WinterCG' Web Interoperable Runtimes Community Group, an effort to promote standards around runtime interoperability of JavaScript runtimes, has moved to Ecma International and is now known as WinterTC (TC55).