ar
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 429 مشتركاً، محتلاً المرتبة 4 370 في فئة التكنولوجيات والتطبيقات والمرتبة 13 384 في منطقة الهند.

📊 مؤشرات الجمهور والحراك

منذ تأسيسه في невідомо، حقق المشروع نمواً سريعاً وجمع 31 429 مشتركاً.

بحسب آخر البيانات بتاريخ 19 يونيو, 2026، تحافظ القناة على نشاط مستقر. خلال آخر 30 يوماً تغيّر عدد الأعضاء بمقدار -164، وفي آخر 24 ساعة بمقدار -19، مع بقاء الوصول العام مرتفعاً.

  • حالة التحقق: غير موثّقة
  • معدل التفاعل (ER): يبلغ متوسط تفاعل الجمهور 5.95‎%. وخلال أول 24 ساعة من النشر يحصد المحتوى عادةً 2.38‎% من ردود الفعل نسبةً إلى إجمالي المشتركين.
  • وصول المنشورات: يحصل كل منشور على متوسط 1 869 مشاهدة. وخلال اليوم الأول يجمع عادةً 747 مشاهدة.
  • التفاعلات والاستجابة: يتفاعل الجمهور بانتظام؛ متوسط التفاعلات لكل منشور يبلغ 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

بفضل وتيرة التحديث المرتفعة (أحدث البيانات بتاريخ 20 يونيو, 2026) تحافظ القناة على حداثتها ومستوى وصول مرتفع. وتُظهر التحليلات تفاعلاً نشطاً من الجمهور، ما يجعلها نقطة تأثير مهمة ضمن فئة التكنولوجيات والتطبيقات.

31 429
المشتركون
-1924 ساعات
+117 أيام
-16430 أيام
أرشيف المشاركات
CHALLENGE

const obj = {};
Object.defineProperty(obj, 'name', {
  value: 'Alice',
  writable: false,
  configurable: false
});

try {
  obj.name = 'Bob';
  delete obj.name;
  console.log(obj.name);
} catch (e) {
  console.log('Error:', e.message);
}

What is the output?
Anonymous voting

CHALLENGE

function processData({ a = 10, b = 20 } = { a: 30 }) {
  console.log(a, b);
}

processData({ a: 5 });
processData();

What is the output?
Anonymous voting

CHALLENGE

function* numberGenerator() {
  let i = 0;
  while (i < 3) {
    yield i++;
  }
}

const gen = numberGenerator();
console.log(gen.next().value);
console.log(gen.return(10).value);
console.log(gen.next().value);

What is the output?
Anonymous voting

CHALLENGE

const obj = Object.freeze({
  name: "Alice",
  info: {
    age: 25
  }
});

try {
  obj.name = "Bob";
  obj.info.age = 30;
} catch (e) {
  console.log("Error:", e.message);
}

console.log(obj.name, obj.info.age);

👀 DOCX 9.0: Generate Word .docx Files from JavaScript The code to lay out documents is verbose but there’s a lot of function
👀 DOCX 9.0: Generate Word .docx Files from JavaScript The code to lay out documents is verbose but there’s a lot of functionality baked in and there aren’t many other options for this task. Here’s a CodePen-based example to give you an idea. GitHub repo. Dolan Miu

What is the output?
Anonymous voting

CHALLENGE

async function first() {
  console.log('First Start');
  await second();
  console.log('First End');
}

async function second() {
  console.log('Second Start');
}

console.log('Script Start');
first();
setTimeout(() => console.log('Timeout'), 0);
console.log('Script End');

✌️ TC39 Advances 10+ ECMAScript Proposals The architects behind the development of the ECMAScript / JavaScript spec got toget
✌️ TC39 Advances 10+ ECMAScript Proposals The architects behind the development of the ECMAScript / JavaScript spec got together again this week (you can see them in this tweet) and they had a packed agenda. Import attributes, Iterator helpers, Promise.try and Regexp modifiers all made it to stage 4, and more besides. Sarah Gooding (Socket)

What is the output?
Anonymous voting

CHALLENGE

setTimeout(() => console.log('Timeout 1'), 100);

setTimeout(() => {
  console.log('Timeout 2');
  Promise.resolve().then(() => console.log('Promise in Timeout 2'));
}, 50);

Promise.resolve().then(() => console.log('Promise 1'));

setTimeout(() => console.log('Timeout 3'), 150);

console.log('Sync');

What is the output?
Anonymous voting

CHALLENGE

setTimeout(() => {
  console.log('Timeout');
  Promise.resolve().then(() => console.log('Promise after Timeout'));
}, 0);

Promise.resolve().then(() => console.log('Promise'));

console.log('End of script');

What is the output?
Anonymous voting