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

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

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

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

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

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

31 440
المشتركون
+1624 ساعات
-137 أيام
-17430 أيام
أرشيف المشاركات
What is the output?
Anonymous voting

CHALLENGE
let str = "Hello, World!";
let result = str.substring(7, 12);
console.log(result);

👈 Tagify 4.33: An Elegant Input Component for Tags The polished demos show a lot of effort has been put in here. GitHub repo
👈 Tagify 4.33: An Elegant Input Component for Tags The polished demos show a lot of effort has been put in here. GitHub repo. Yair Even-Or

What is the output?
Anonymous voting

CHALLENGE
function displayArguments() {
  console.log(arguments.length);
  console.log(arguments[0]);
  console.log(arguments[2]);
}

displayArguments('Hello', 'World', 'JavaScript', 'Quiz');

📄 Play Tetris in a PDF File I'll let you decide if this one is fun or frightening! Whether or not this will work depends on
📄 Play Tetris in a PDF File I'll let you decide if this one is fun or frightening! Whether or not this will work depends on your PDF reader or browser support, but it works with Chrome and Firefox, at least. The PDF document format supports embedded JavaScript and this experiment uses it to implement a game of Tetris. The developer, Thomas Rinsma, has used Python to output the PostScript that includes the game's JavaScript. Couple that with the fact many browser PDF renderers are themselves implemented in JavaScript (e.g. PDF.js) and you have a veritable Matryoshka doll of technologies at play here.

What is the output?
Anonymous voting

CHALLENGE
function trickyFunction() {
  let a = 5;
  let b = '5';
  let c = 5;

  if (a == b && b === c) {
    console.log('Condition 1');
  } else if (a === c || b == c) {
    console.log('Condition 2');
  } else {
    console.log('Condition 3');
  }
}

trickyFunction();

👀 PostalMime: A Universal Email Parsing Library An email parsing library happy in most JS runtimes. Takes the raw source of
👀 PostalMime: A Universal Email Parsing Library An email parsing library happy in most JS runtimes. Takes the raw source of emails and parses them into their constituent parts. Postal Systems

What is the output?
Anonymous voting

CHALLENGE
var obj = { a: 10, b: 20 };

with (obj) {
  var result = a + b;
}

console.log(result);

⭐ 2024's JavaScript Rising Stars It’s time to fully wave goodbye to 2024, but not before Michael Rambeau’s annual analysis of
2024's JavaScript Rising Stars It’s time to fully wave goodbye to 2024, but not before Michael Rambeau’s annual analysis of which JavaScript projects fared best on GitHub over the past year. Even if you dislike GitHub stars as a metric for anything, this remains a great way to get a feel for the JavaScript ecosystem and see what libraries and tools have mindshare in a variety of niches. A fantastic roundup as always. Michael Rambeau

What is the output?
Anonymous voting

CHALLENGE
const myObject = {
  a: 1,
  b: 2,
  c: 3,
  [Symbol.iterator]: function* () {
    for (let key of Object.keys(this)) {
      yield this[key];
    }
  }
};

const iter = myObject[Symbol.iterator]();
console.log(iter.next().value);
console.log(iter.next().value);
console.log(iter.next().value);

What is the output?
Anonymous voting

CHALLENGE
function* customGenerator() {
    yield 'Hello';
    yield 'World';
    return 'Done';
}

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

What is the output?
Anonymous voting

CHALLENGE
const mySet = new Set();
mySet.add(10);
mySet.add(20);
mySet.add(10);
mySet.add(30);

console.log(mySet.size);

What is the output?
Anonymous voting

CHALLENGE
const WM = new WeakMap();
let obj = {};
let anotherObj = {};
WM.set(obj, 'object data');
WM.set(anotherObj, 'another object data');
obj = null;

// Let's check what's logged
console.log(WM.has(obj));
console.log(WM.has(anotherObj));