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

📊 Auditoriya ko‘rsatkichlari va dinamika

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

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

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 5.95% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 2.38% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 1 869 marta ko‘riladi; birinchi sutkada odatda 747 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 20 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 424
Obunachilar
-1924 soatlar
+117 kunlar
-16430 kunlar
Postlar arxiv
SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AICHALLENGE

function* fibGenerator() {
  let a = 0, b = 1;
  while (true) {
    let next = a + b;
    a = b;
    b = next;
    yield next;
  }
}

const gen = fibGenerator();
const fibArray = Array.from({ length: 5 }, () => gen.next().value);

console.log(fibArray);

SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AI 💻 What we got wrong about HTTP imports Ryan Dahl
SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AI 💻 What we got wrong about HTTP imports Ryan Dahl

What is the output?
Anonymous voting

SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AICHALLENGE

function* idGenerator() {
  let id = 1;
  while (true) {
    yield id++;
  }
}

const gen = idGenerator();
const ids = Array.from({ length: 3 }, () => gen.next().value).map(id => `ID${id}`);

console.log(ids);

SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AI 🆒 Projects on roadmap.sh Projects are a fantastic way to validate your learning and solidify your knowledge. We're thrilled to introduce projects across all of our 50+ roadmaps! We're starting with the backend roadmap, which now features 18 project ideas of varying difficulty levels. We'll gradually add projects to all our roadmaps making our roadmaps even more powerful. Kamran Ahmed

What is the output?
Anonymous voting

CHALLENGE

function* numberDoubler(arr) {
  for (const num of arr) {
    yield num * 2;
  }
}

const result = [...numberDoubler([1, 2, 3])].some(n => n % 4 === 0);

console.log(result);

SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AI This is a treasure! ✌️ Do you have any (old or new
SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AI This is a treasure! ✌️ Do you have any (old or new) Javascript book laying around? We want to see some pictures. Share with us

What is the otuput?
Anonymous voting

CHALLENGE

function* evenNumbers() {
  let num = 0;
  while (true) {
    yield num;
    num += 2;
  }
}

const gen = evenNumbers();
const evens = Array.from({ length: 4 }, () => gen.next().value).map(n => n + 1);

console.log(evens);

SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AI 😆 ✌️ vs 🥶
SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AI 😆 ✌️ vs 🥶

What is the output?
Anonymous voting

SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AICHALLENGE
const target = {
  secret: "hidden",
  reveal: "nothing"
};

const handler = {
  get: function(obj, prop, receiver) {
    if (prop === "secret") {
      return "revealed";
    }
    return Reflect.get(...arguments);
  }
};

const proxy = new Proxy(target, handler);

with (proxy) {
  console.log(secret);
  console.log(reveal);
}

😆 My code after the refactoring
😆 My code after the refactoring

What is the output?
Anonymous voting

SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AICHALLENGE

let obj1 = { key: 'value1' };
let obj2 = { key: 'value2' };

const weakMap = new WeakMap();
weakMap.set(obj1, 'data1');
weakMap.set(obj2, 'data2');

obj1 = null;
setTimeout(() => {
  console.log(weakMap.has(obj1));
  console.log(weakMap.has(obj2));
}, 100);

SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AI 🥶 A Different Way to Think About TypeScript “a ve
SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AI 🥶 A Different Way to Think About TypeScript “a very expressive way to operate over sets, and using those sets to enforce strict compile time checks” Robby Pruzan

What is the output?
Anonymous voting

SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AICHALLENGE
const target = {
  age: 30
};

const handler = {
  get: function(obj, prop) {
    return obj[prop]++;  
  }
};

const proxy = new Proxy(target, handler);

console.log(proxy.age);
console.log(target.age);
console.log(proxy.age);

SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AI 🥹😂😆emoji-picker-element: A Lightweight Emoji Pi
SPONSORED BY Lantern Cloud 👯‍♀️ Vector database on top of Postgres for AI 🥹😂😆emoji-picker-element: A Lightweight Emoji Picker An emoji picking control, packaged as a Web Component. You can also add custom emoji to it. GitHub repo. Nolan Lawson