fa
Feedback
JavaScript

JavaScript

رفتن به کانال در Telegram

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

نمایش بیشتر

📈 تحلیل کانال تلگرام JavaScript

کانال JavaScript (@javascript) در بخش زبانی انگلیسی بازیگری فعال است. در حال حاضر جامعه شامل 31 169 مشترک است و جایگاه 4 162 را در دسته فناوری و برنامه‌ها و رتبه 12 802 را در منطقه الهند دارد.

📊 شاخص‌های مخاطب و پویایی

از زمان ایجاد در невідомо، پروژه رشد سریعی داشته و 31 169 مشترک جذب کرده است.

بر اساس آخرین داده‌ها در تاریخ 16 سپتامبر, 2026، کانال فعالیت پایداری دارد. در ۳۰ روز گذشته تغییر اعضا برابر -150 و در ۲۴ ساعت گذشته برابر -1 بوده و همچنان دسترسی گسترده‌ای حفظ شده است.

  • وضعیت تأیید: تأیید نشده
  • نرخ تعامل (ER): میانگین تعامل مخاطب 6.13% است و در ۲۴ ساعت نخست پس از انتشار، محتوا معمولاً 2.29% واکنش نسبت به کل مشترکان کسب می‌کند.
  • دسترسی پست‌ها: هر پست به طور میانگین 1 911 بازدید دریافت می‌کند. در اولین روز معمولاً 715 بازدید جمع‌آوری می‌شود.
  • واکنش‌ها و تعامل: مخاطبان به‌طور فعال حمایت می‌کنند؛ میانگین واکنش به هر پست 5 است.
  • علایق موضوعی: محتوا بر موضوعات کلیدی مانند javascript, console.log(gen.next().value, processdata, remix, acc تمرکز دارد.

📝 توضیح و سیاست محتوایی

نویسنده این فضا را محل بیان دیدگاه‌های شخصی توصیف می‌کند:
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

به لطف به‌روزرسانی‌های پرتکرار (آخرین داده در تاریخ 17 سپتامبر, 2026)، کانال همواره به‌روز و دارای دسترسی بالاست. تحلیل‌ها نشان می‌دهد مخاطبان به‌طور فعال با محتوا تعامل دارند و آن را به نقطه اثرگذاری مهم در دسته فناوری و برنامه‌ها تبدیل کرده‌اند.

31 169
مشترکین
-124 ساعت
-417 روز
-15030 روز
آرشیو پست ها
⛽️ Drydock: Diff Your npm Tarballs Before You Publish From a Preact core team member comes a tool to diff built npm tarballs
⛽️ Drydock: Diff Your npm Tarballs Before You Publish From a Preact core team member comes a tool to diff built npm tarballs against the last published version, flagging install scripts, network access and new binaries. It can then gate your Actions publish job or watch npm's new staged publishing flow. Jovi De Croock

What is the output?
Anonymous voting

CHALLENGE
class Base {
  static count = 0;
  static #secret = 42;
  static {
    Base.count = 10;
  }
  static getSecret() {
    return this.#secret;
  }
}

class Derived extends Base {
  static count = Base.count + 5;
}

let result;
try {
  result = Derived.getSecret();
} catch (e) {
  result = e.constructor.name;
}

console.log(Base.count, Derived.count, result);

🌦 NestJS 12 Released with ESM-First Packages, Rspack and Vitest The progressive framework gets its biggest release in years,
🌦 NestJS 12 Released with ESM-First Packages, Rspack and Vitest The progressive framework gets its biggest release in years, going ESM-first (CJS is still an option), replacing webpack with Rspack, adding Standard Schema support for easy interop with Zod, Valibot and friends, plus structured logging, a brand new homepage, and more. Kamil Mysliwiec

What is the output?
Anonymous voting

CHALLENGE
class Counter {
  constructor() {
    this.count = 0;
  }
  increment() {
    this.count++;
    return this.count;
  }
}

const counter = new Counter();
const boundInc = counter.increment.bind(counter);
const rebind = boundInc.bind({ count: 100 });

console.log(boundInc(), rebind(), counter.count);

What is the output?
Anonymous voting

CHALLENGE
const log = [];

async function a() {
  log.push('a-start');
  await b();
  log.push('a-end');
}

async function b() {
  log.push('b-start');
  await Promise.resolve();
  log.push('b-end');
}

a();
log.push('sync-end');

setTimeout(() => console.log(log.join(',')), 0);

What is the output?
Anonymous voting

CHALLENGE
class Range {
  #start; #end;
  constructor(start, end) { this.#start = start; this.#end = end; }
  [Symbol.iterator]() {
    let current = this.#start;
    const end = this.#end;
    return {
      next() {
        return current < end
          ? { value: current++, done: false }
          : { value: undefined, done: true };
      },
      [Symbol.iterator]() { return this; }
    };
  }
}

const range = new Range(1, 5);
const arr1 = [...range];
const arr2 = [...range];
const sum = arr1.reduce((a, b) => a + b, 0);
console.log(arr1.join(','), arr2.join(','), sum);

What is the output?
Anonymous voting

CHALLENGE
const nums = [40, 100, 1, 5, 25, 10];
nums.sort();
console.log(nums.join(' '));

What is the output?
Anonymous voting

CHALLENGE
function partial(fn, ...presetArgs) {
  return (...laterArgs) => fn(...presetArgs, ...laterArgs);
}

const add = (a, b, c) => a + b + c;
const addFive = partial(add, 5);
const addFiveTen = partial(addFive, 10);
console.log(addFiveTen(1), addFive(2, 3));

export {};

What is the output?
Anonymous voting

CHALLENGE
const proto = { inherited: 'nope' };
const obj = Object.create(proto);
obj.b = 2;
obj[1] = 'one';
obj.a = 1;
Object.defineProperty(obj, 'hidden', { value: 'secret', enumerable: false });
obj[Symbol('sym')] = 'symbolValue';
console.log(
  Object.keys(obj).join(','),
  Object.values(obj).join(','),
  Object.entries(obj).length
);

What is the output?
Anonymous voting

CHALLENGE
const compose = (...fns) => x => fns.reduceRight((acc, fn) => fn(acc), x);
const pipe = (...fns) => x => fns.reduce((acc, fn) => fn(acc), x);

const add = n => x => x + n;
const mul = n => x => x * n;

const composed = compose(add(3), mul(2));
const piped = pipe(add(3), mul(2));

console.log(composed(5), piped(5));

🔥
🔥

What is the output?
Anonymous voting