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 406 مشترک است و جایگاه 4 370 را در دسته فناوری و برنامه‌ها و رتبه 13 353 را در منطقه الهند دارد.

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

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

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

  • وضعیت تأیید: تأیید نشده
  • نرخ تعامل (ER): میانگین تعامل مخاطب 5.88% است و در ۲۴ ساعت نخست پس از انتشار، محتوا معمولاً 2.24% واکنش نسبت به کل مشترکان کسب می‌کند.
  • دسترسی پست‌ها: هر پست به طور میانگین 1 848 بازدید دریافت می‌کند. در اولین روز معمولاً 705 بازدید جمع‌آوری می‌شود.
  • واکنش‌ها و تعامل: مخاطبان به‌طور فعال حمایت می‌کنند؛ میانگین واکنش به هر پست 6 است.
  • علایق موضوعی: محتوا بر موضوعات کلیدی مانند 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

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

31 406
مشترکین
-2024 ساعت
-307 روز
-16430 روز
آرشیو پست ها
👀 How 1Password Used esbuild to Cut Browser Extension Build Times 1Password is a popular password management tool that relie
👀 How 1Password Used esbuild to Cut Browser Extension Build Times 1Password is a popular password management tool that relies upon a browser extension to fill out passwords on the Web. At over a minute for a single build, things were starting to drag for the devs. Could esbuild help? A fun story with plenty of technical details. Jarek Samic

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  return 2;
}

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

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield 1;
  yield* (function*() { yield 2; yield 3; })();
  yield 4;
}

const gen = generator();
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

function* generator() {
  yield 1;
  yield 2;
  yield 3;
}

const gen1 = generator();
const gen2 = generator();

console.log(gen1.next().value);
console.log(gen2.next().value);
console.log(gen1.next().value);
console.log(gen2.next().value);

✨ Creating Realistic Handwriting with p5.js Amy wanted to programatically bring her (cursive) handwriting into some diagrams
Creating Realistic Handwriting with p5.js Amy wanted to programatically bring her (cursive) handwriting into some diagrams she was making and figured out how to make it happen with p5.js. Here's how. AMY GOODCHILD

What is the output?
Anonymous voting

CHALLENGE

function* generator() {
  yield* [1, 2, 3];
  yield 4;
}

const gen = generator();
console.log([...gen]);

🤔 City in a Bottle: Raycasting in 256 Bytes Frank has a great reputation for putting together stunning visual demos with the
🤔 City in a Bottle: Raycasting in 256 Bytes Frank has a great reputation for putting together stunning visual demos with the tiniest amounts of JavaScript. This is no exception. He goes into a lot of detail about how it works; you’ll learn a few things and/or come away awe-struck. FRANK FORCE

What is the output?
Anonymous voting

CHALLENGE

const obj = {
  a: 1,
  b: function() {
    return () => {
      return this.a;
    };
  },
  c: function() {
    return function() {
      return this.a;
    };
  }
};

const arrowFunc = obj.b();
const regularFunc = obj.c();

console.log(arrowFunc());
console.log(regularFunc());

🧠 Brainchop 4.0 An in-browser 3D MRI rendering system. (Demo.)
🧠 Brainchop 4.0 An in-browser 3D MRI rendering system. (Demo.)

What is the output?
Anonymous voting

CHALLENGE

console.log(1);

setTimeout(() => {
  console.log(2);
}, 100);

setTimeout(() => {
  console.log(3);
}, 0);

Promise.resolve().then(() => {
  console.log(4);
}).then(() => {
  console.log(5);
});

console.log(6);

What is the output?
Anonymous voting

CHALLENGE

let proto = { a: 1 };
let obj = Object.create(proto);

Object.defineProperty(obj, 'a', {
  value: 2,
  writable: false,
  enumerable: true,
  configurable: false
});

console.log(obj.a);
proto.a = 3;
console.log(obj.a);