en
Feedback
JavaScript

JavaScript

Open in 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

Show more

πŸ“ˆ Analytical overview of Telegram channel JavaScript

Channel JavaScript (@javascript) in the English language segment is an active participant. Currently, the community unites 31 444 subscribers, ranking 4 369 in the Technologies & Applications category and 13 408 in the India region.

πŸ“Š Audience metrics and dynamics

Since its creation on Π½Π΅Π²Ρ–Π΄ΠΎΠΌΠΎ, the project has demonstrated rapid growth, gathering an audience of 31 444 subscribers.

According to the latest data from 18 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -148 over the last 30 days and by -3 over the last 24 hours, overall reach remains high.

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 6.02%. Within the first 24 hours after publication, content typically collects 2.49% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 1 895 views. Within the first day, a publication typically gains 784 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 7.
  • Thematic interests: Content is focused on key topics such as javascript, console.log(gen.next().value, processdata, remix, acc.

πŸ“ Description and content policy

The author describes the resource as a platform for expressing subjective opinions:
β€œ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”

Thanks to the high frequency of updates (latest data received on 19 June, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.

31 444
Subscribers
-324 hours
+47 days
-14830 days
Posts Archive
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));

😒
😒

What is the output?
Anonymous voting

CHALLENGE
async function fetchData() {
  let data = 'initial';

  const promise = new Promise((resolve) => {
    setTimeout(() => {
      resolve('fetched');
    }, 1000);
  });

  promise.then((result) => {
    data = result;
  });

  return data;
}

fetchData().then(console.log);

What is the output?
Anonymous voting

CHALLENGE
function trickyFunction() {
  var obj = { a: 1 };
  var anotherObj = obj;
  obj.a = 2;
  obj = { a: 3 };
  anotherObj.a = 4;
  return obj.a + anotherObj.a;
}

console.log(trickyFunction());

🌦 awesome-nest-boilerplate This is an ever-evolving, very opinionated architecture and dev environment for new node projects
🌦 awesome-nest-boilerplate This is an ever-evolving, very opinionated architecture and dev environment for new node projects using NestJS. NarHakobyan

What is the output?
Anonymous voting

CHALLENGE
function trickyFunction() {
  var x = 10;
  if (x > 5) {
    let y = x * 2;
    x = y;
  }
  return x;
}

console.log(trickyFunction());

🌦 awesome-nest-schematics Awesome Nest Boilerplate architecture element generation based on Angular schematics 🎬 NarHakobya
🌦 awesome-nest-schematics Awesome Nest Boilerplate architecture element generation based on Angular schematics 🎬 NarHakobyan

What is the output?
Anonymous voting

CHALLENGE
function trickyFunction() {
    var a = 10;
    var b = a;
    b = 15;

    const obj1 = { x: 1 };
    const obj2 = obj1;
    obj2.x = 5;

    console.log(a + ' ' + b + ' ' + obj1.x);
}

trickyFunction();

What is the output?
Anonymous voting

CHALLENGE

const obj = {
  valueOf() {
    return 42;
  }
};

const result = obj + 8;
console.log(result);