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

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

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

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

  • حالة التحقق: غير موثّقة
  • معدل التفاعل (ER): يبلغ متوسط تفاعل الجمهور 6.22‎%. وخلال أول 24 ساعة من النشر يحصد المحتوى عادةً 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
const source = { a: 1, b: { c: 2 } };
const target1 = Object.assign({}, source);
const target2 = { ...source };

source.b.c = 99;
target1.a = 10;
target2.b.c = 50;

console.log(source.a);
console.log(source.b.c);
console.log(target1.a);
console.log(target1.b.c);
console.log(target2.a);
console.log(target2.b.c);

What is the output?
Anonymous voting

CHALLENGE
const obj = {
  name: 'Sarah',
  greet() {
    console.log(`Hello, ${this.name}`);
  }
};

const person = { name: 'Mike' };
const func = obj.greet;

obj.greet();
func();
func.call(person);
person.hello = obj.greet;
person.hello();

What is the output?
Anonymous voting

CHALLENGE
const target = { name: 'Sarah', age: 25 };

const handler = {
  get(obj, prop) {
    if (prop === 'toString') {
      return () => `Person: ${obj.name}`;
    }
    return Reflect.get(obj, prop);
  },
  set(obj, prop, value) {
    if (prop === 'age' && value < 0) {
      return false;
    }
    return Reflect.set(obj, prop, value);
  }
};

const proxy = new Proxy(target, handler);
proxy.age = -5;
proxy.location = 'NYC';
console.log(proxy.toString());
console.log(proxy.age);
console.log(proxy.location);

What is the output?
Anonymous voting

CHALLENGE
function processData() {
  try {
    console.log('start');
    throw new Error('oops');
    console.log('unreachable');
  } catch (e) {
    console.log('caught');
    return 'error';
  } finally {
    console.log('cleanup');
  }
  console.log('end');
}

const result = processData();
console.log(result);

What is the output?
Anonymous voting

CHALLENGE
const user = {
  profile: {
    settings: {
      theme: 'dark',
      notifications: null
    }
  }
};

const getNotificationSound = (user) => {
  return user?.profile?.settings?.notifications?.sound ?? 'default';
};

console.log(getNotificationSound(user));
console.log(getNotificationSound(null));
console.log(getNotificationSound({ profile: {} }));

🌲 Improving Single Executable Application Building in Node First introduced two years ago, Node has a (still experimental) f
🌲 Improving Single Executable Application Building in Node First introduced two years ago, Node has a (still experimental) feature to build single executable applications that can be deployed to machines that don’t have Node installed. This week’s Node.js 25.5 release, with its --build-sea flag, moves the final injection step into Node itself, eliminating the need for external tooling and turning what was a multi-step, low-level process into a single command. Joyee Cheung

What is the output?
Anonymous voting

CHALLENGE
const nums = [1, 2, 3];
const obj = { a: 1, b: 2 };
const newObj = { ...obj, b: 3, ...obj };

const arr1 = [4, 5];
const arr2 = [6, 7];
const combined = [...nums, ...arr1, ...arr2];

const [first, ...rest] = combined;
const { a, ...remaining } = newObj;

console.log(newObj.b);
console.log(rest.length);
console.log(remaining.b);

🙂 OpenAI's Michael Bolin wrote a thorough technical review of how its OpenAI Codex agent works. Invaluable reading for anyon
🙂 OpenAI's Michael Bolin wrote a thorough technical review of how its OpenAI Codex agent works. Invaluable reading for anyone trying to implement their own coding agent or even if you just want to know how they do their thing.

What is the output?
Anonymous voting

CHALLENGE
console.log('start');

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

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

Promise.resolve().then(() => {
  console.log('promise 2');
}).then(() => {
  console.log('promise 3');
});

console.log('end');

🤔 Porting 100k Lines from TypeScript to Rust in a Month A prolific JavaScript developer ported a Pokémon battle simulator to
🤔 Porting 100k Lines from TypeScript to Rust in a Month A prolific JavaScript developer ported a Pokémon battle simulator to Rust and shares his experiences and techniques used to work around issues where Claude Code would get bogged down in such a large task. He notes “LLM-based coding agents are such a great new tool” but require “engineering expertise and constant babysitting”. Christopher Chedeau

What is the output?
Anonymous voting

CHALLENGE
const wm = new WeakMap();
let obj1 = { name: 'John' };
let obj2 = { name: 'Jane' };

wm.set(obj1, 'developer');
wm.set(obj2, 'designer');

console.log(wm.get(obj1));
console.log(wm.has(obj2));

obj1 = null;
console.log(wm.get(obj1));

const normalObj = {};
try {
  wm.set('string', 'value');
} catch (e) {
  console.log('error');
}

👀 Introducing LibPDF: PDF Parsing and Generation from TypeScript LibPDF bills itself as ‘the PDF library TypeScript deserves
👀 Introducing LibPDF: PDF Parsing and Generation from TypeScript LibPDF bills itself as ‘the PDF library TypeScript deserves’ and supports parsing, modifying, signing and generating PDFs with a modern API in Node, Bun, and the browser. GitHub repo. Documenso