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
function* numberGenerator() {
  yield 1;
  yield 2;
  yield 3;
}

const gen = numberGenerator();
console.log(gen.next().value);
console.log(gen.next().value);
console.log(gen.next().value);
console.log(gen.next().value);

What is the output?
Anonymous voting

CHALLENGE
'use strict';

function strictModeExample() {
  undeclaredVariable = 10;
  try {
    console.log(undeclaredVariable);
  } catch (e) {
    console.log('Error:', e.message);
  }
}

strictModeExample();

👍 A Protracker Module Player in Pure JavaScript I’m a sucker for 90s tracker music, JavaScript experiments, and cool Web exp
👍 A Protracker Module Player in Pure JavaScript I’m a sucker for 90s tracker music, JavaScript experiments, and cool Web experiences, and this has all three. If you’re not familiar with tracker music, it’s a way to write music on a grid which triggers the playing of samples. This code manages to parse and play a Protracker file in pure JavaScript. (Note: The image above is of the original Protracker app, this experiment is more minimal and about the code.) srtuss

What is the output?
Anonymous voting

CHALLENGE
let a = 5;
let b = a++ + ++a;
console.log(b);

🤔 Which Rich Text Editor Framework Should You Choose in 2025? A round-up of actively developed WYSIWYG editor options you ca
🤔 Which Rich Text Editor Framework Should You Choose in 2025? A round-up of actively developed WYSIWYG editor options you can drop into your apps along with the pros and cons of each. Dexemple and Rowny (Liveblocks)

What is the output?
Anonymous voting

CHALLENGE
const a = '5';
const b = 5;
const c = 10;

const result1 = a == b;
const result2 = a === b;
const result3 = b < c;
const result4 = b >= c;

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

✌️ Oracle Claims 'JavaScript' Isn't a Generic Term, and More In this 'motion to dismiss' Oracle has responded to Deno’s attem
✌️ Oracle Claims 'JavaScript' Isn't a Generic Term, and More In this 'motion to dismiss' Oracle has responded to Deno’s attempt to prove Oracle shouldn't hold the JavaScript™ trademark with the argument that “relevant consumers do not perceive JAVASCRIPT as a generic term” (does Oracle only consider people who give it money to be relevant?) among other comedic insights. Ryan Dahl

What is the output?
Anonymous voting

CHALLENGE
const person = {
  firstName: 'John',
  lastName: 'Doe',
  age: 30,
  getFullName: function() {
    return this.firstName + ' ' + this.lastName;
  }
};

console.log(person.getFullName());

What is the output?
Anonymous voting

CHALLENGE
function example() {
  console.log(a);
  var a = 10;
  console.log(a);
}
example();

What is the output?
Anonymous voting

CHALLENGE
const person = {
  name: 'Alice',
  age: 25,
  city: 'Wonderland'
};

const additionalInfo = {
  age: 30,
  occupation: 'Explorer'
};

const combined = {
  ...person,
  ...additionalInfo
};

console.log(combined.age);

What is the output?
Anonymous voting

CHALLENGE
const numbers = [1, 2, 3, 4, 5];

const result = numbers
  .filter(n => n % 2 === 0)
  .map(n => n * 2)
  .reduce((acc, n) => acc + n, 0);

console.log(result);