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

📊 Auditoriya ko‘rsatkichlari va dinamika

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

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

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 5.70% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 1.95% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 1 790 marta ko‘riladi; birinchi sutkada odatda 611 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 23 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 391
Obunachilar
-2924 soatlar
-707 kunlar
-19730 kunlar
Postlar arxiv
CHALLENGE

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

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

console.log(result);

😂
😂

🤟 💚 The Node.js Valentine's Day Security Releases Security releases had been expected to land in the past week for Node and they’re now here as v21.6.2 (Current), v20.11.1 (LTS), and v18.19.1 (LTS). They include fixes for a variety of vulnerabilities, including some high severity ones involving HTTP-based DoS attacks and privilege escalation. RAFAEL GONZAGA AND MARCO IPPOLITO

What is the output?
Anonymous voting

CHALLENGE *

const string = "Lorem ipsum dolor sit amet";

const result = string.split(" ")
                     .map(word => word.toLowerCase())
                     .reduce((acc, word) => {
                       acc[word] = (acc[word] || 0) + 1;
                       return acc;
                     }, {});

console.log(result);

💥 Questions by roadmap.sh roadmap.sh is the 6th most starred project on GitHub and is visited by hundreds of thousands of de
💥 Questions by roadmap.sh roadmap.sh is the 6th most starred project on GitHub and is visited by hundreds of thousands of developers every month.

What is the output?
Anonymous voting

CHALLENGE

function recursiveMaxSubarraySum(nums, startIndex = 0, currentSum = 0, maxSum = -Infinity) {
  if (startIndex === nums.length) {
    return maxSum;
  }

  currentSum = Math.max(nums[startIndex], currentSum + nums[startIndex]);
  maxSum = Math.max(currentSum, maxSum);

  return recursiveMaxSubarraySum(nums, startIndex + 1, currentSum, maxSum);
}

const result = recursiveMaxSubarraySum([-2, 1, -3, 4, -1, 2, 1, -5, 4]);

console.log(result);

⭐️ Updates from the TC39 meeting in February 2024 Stage changes: - Several proposals advanced to stage 1. - Stage 2: “Promise.try” - Stage 3: “Uint8Array to/from base64 and hex” - Stage 4: “ArrayBuffer.prototype.transfer and friends” - Several proposals became inactive. New ECMAScript proposal stage: 2.7 🟨 “Stage 2.7 is equivalent to what we used to call Stage 3. It means that the design is considered complete, we have a full specification, and we need to write code (tests and non-polyfill implementations) to gain feedback and make progress. It’s a strong signal.” 🟨“Stage 3 has been strengthened and now also means that test262 conformance tests are ready. This is a useful signal to JS engines that a proposal is truly ready to be implemented.” 🟨“Why did we do this? We separated out the ‘Approved in Principle: Spec Ready’ stage from the later ‘Recommended for Implementation: Tests Ready’ stage to reduce wasted effort in writing tests before spec stability, whilst also clarifying the test readiness message to engines.” TC39 member Jordan Harband comments: “[Stage 2.7 is] explicitly without the signal that it’s safe to ship unflagged, or use in production (which includes publishing polyfills). Stage 3 remains the signal for these things.” ecmascript.new

What is the output?
Anonymous voting

CHALLENGE

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

const sum = numbers.reduce((acc, curr) => {
  setTimeout(() => {
    acc += curr;
  }, 0);
  return acc;
}, 0);

console.log(sum);

What is the otuput?
Anonymous voting

CHALLENGE

function recursiveNQueens(n) {
  const board = Array.from({ length: n }, () => Array.from({ length: n }, () => "."));

  const solutions = [];

  const isSafe = (row, col) => {
    for (let i = 0; i < row; i++) {
      if (board[i][col] === "Q") return false;
      const colOffset = row - i;
      if (col - colOffset >= 0 && board[i][col - colOffset] === "Q") return false;
      if (col + colOffset < n && board[i][col + colOffset] === "Q") return false;
    }
    return true;
  };

  const placeQueens = (row) => {
    if (row === n) {
      solutions.push(board.map(row => row.join("")));
      return;
    }
    for (let col = 0; col < n; col++) {
      if (isSafe(row, col)) {
        board[row][col] = "Q";
        placeQueens(row + 1);
        board[row][col] = ".";
      }
    }
  };

  placeQueens(0);

  return solutions;
}

const result = recursiveNQueens(4);

console.log(result);

Help us get to know our diverse audience! Please select the region or country where you're currently located. Your input will assist us in tailoring our content to better suit your interests and preferences. Thank you for participating!
Anonymous voting

What is the output?
Anonymous voting

CHALLENGE

function recursivePascalTriangle(n, row = [1], triangle = []) {
  triangle.push(row);
  if (n === triangle.length) {
    return triangle;
  }
  const nextRow = [1];
  for (let i = 1; i < row.length; i++) {
    nextRow.push(row[i] + row[i - 1]);
  }
  nextRow.push(1);
  return recursivePascalTriangle(n, nextRow, triangle);
}

const result = recursivePascalTriangle(5);

console.log(result);

What is the output?
Anonymous voting

CHALLENGE

function* generatorQuiz() {
  yield 1;
}

const generator = generatorQuiz();

setTimeout(() => console.log(generator.next().value), 0);

for (const value of generator) {
  console.log(value);
}

👀 Take a Qwik Break from React with Astro Paul Scanlon compares React to Qwik using several examples and concludes that Qwik
👀 Take a Qwik Break from React with Astro Paul Scanlon compares React to Qwik using several examples and concludes that Qwik is at least worth exploring as a React alternative. PAUL SCANLON