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

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

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

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

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

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

31 441
مشترکین
-2624 ساعت
-807 روز
-21130 روز
آرشیو پست ها
What is the output?
Anonymous voting

CHALLENGE
async function processData() {
  const promise1 = Promise.resolve('first');
  const promise2 = Promise.reject('error');
  const promise3 = Promise.resolve('third');
  
  try {
    const result = await Promise.allSettled([promise1, promise2, promise3]);
    console.log(result[0].status);
    console.log(result[1].reason);
    console.log(result[2].value);
  } catch (error) {
    console.log('caught:', error);
  }
}

processData();

What is the output?
Anonymous voting

CHALLENGE
const data = [
  { type: 'income', amount: 1000, category: 'salary' },
  { type: 'expense', amount: 200, category: 'food' },
  { type: 'income', amount: 500, category: 'freelance' },
  { type: 'expense', amount: 150, category: 'transport' }
];

const result = data.reduce((acc, item) => {
  const key = item.type;
  acc[key] = (acc[key] || 0) + item.amount;
  return acc;
}, {});

console.log(result.income - result.expense);

👀 For years, Mozilla, Apple, and the CSS Working Group have been working to bring "masonry" layouts (as above) natively to C
👀 For years, Mozilla, Apple, and the CSS Working Group have been working to bring "masonry" layouts (as above) natively to CSS. The concept is now called CSS Grid Lanes and here's how it works. You can already try it out in Safari Technology Preview 234.

What is the output?
Anonymous voting

CHALLENGE
console.log(typeof myVar);
console.log(typeof myFunc);
console.log(typeof myArrow);

var myVar = 'initialized';

function myFunc() {
  return 'function declaration';
}

var myArrow = () => 'arrow function';

console.log(typeof myVar);
console.log(typeof myFunc);
console.log(typeof myArrow);

✌️🌲📸🟠🔵 Schedule-X 3.6: A Material Design Calendar and Date Picker Available in the form of React/Preact, Vue, Svelte, Ang
✌️🌲📸🟠🔵 Schedule-X 3.6: A Material Design Calendar and Date Picker Available in the form of React/Preact, Vue, Svelte, Angular, or plain JS components. Open source but with a premium version with extra features. GitHub repo. Tom Österlund

What is the output?
Anonymous voting

CHALLENGE
const config = { api: 'v1', timeout: 5000 };
Object.seal(config);

const settings = { theme: 'dark', lang: 'en' };
Object.freeze(settings);

config.api = 'v2';
config.retries = 3;
settings.theme = 'light';
settings.debug = true;

console.log(config.api);
console.log(config.retries);
console.log(settings.theme);
console.log(settings.debug);

😮 The 2025 JavaScript Rising Stars At the start of each year, Michael rounds up the projects in the JavaScript ecosystem tha
😮 The 2025 JavaScript Rising Stars At the start of each year, Michael rounds up the projects in the JavaScript ecosystem that gained the most popularity on GitHub in the prior year. After a two-year run of topping the chart, shadcn/ui has been pushed down to #3 by n8n and React Bits. This is a fantastic roundup, now in its tenth(!) year, and features commentary from a few industry experts too. Michael Rambeau et al.

What is the output?
Anonymous voting

CHALLENGE
const obj = { a: 1, b: 2, c: 3 };
const entries = Object.entries(obj);
const keys = Object.keys(obj);
const values = Object.values(obj);

const result = {
  entriesLength: entries.length,
  keysJoined: keys.join('-'),
  valuesSum: values.reduce((sum, val) => sum + val, 0),
  firstEntry: entries[0]
};

console.log(result.entriesLength);
console.log(result.keysJoined);
console.log(result.valuesSum);
console.log(result.firstEntry);

What is the output?
Anonymous voting

CHALLENGE
function* outer() {
  yield 1;
  yield* inner();
  yield 4;
}

function* inner() {
  yield 2;
  yield 3;
}

const gen = outer();
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
const user = {
  name: 'Sarah',
  age: 28,
  getName() {
    return this.name;
  }
};

const { getName } = user;
const boundGetName = user.getName.bind(user);

console.log(getName());
console.log(boundGetName());
console.log(user.getName());

What is the output?
Anonymous voting

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

const gen = fibonacci();
const results = [];
for (let i = 0; i < 6; i++) {
  results.push(gen.next().value);
}
console.log(results.join(','));

What is the output?
Anonymous voting