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 442 subscribers, ranking 4 383 in the Technologies & Applications category and 13 548 in the India region.

πŸ“Š Audience metrics and dynamics

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

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

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 6.27%. Within the first 24 hours after publication, content typically collects 2.55% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 1 972 views. Within the first day, a publication typically gains 800 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 15 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 442
Subscribers
-1424 hours
-527 days
-19830 days
Posts Archive
What is the output?
Anonymous voting

CHALLENGE
function outer() {
  console.log(typeof inner);
  console.log(typeof inner2);
  
  var inner = function() {
    return 'Inside inner';
  };
  
  function inner2() {
    return 'Inside inner2';
  }
  
  console.log(typeof inner);
  console.log(typeof inner2);
}

outer();

What is the output?
Anonymous voting

CHALLENGE
function* counter() {
  let count = 1;
  while (true) {
    const reset = yield count++;
    if (reset) {
      count = 1;
    }
  }
}

const gen = counter();
console.log(gen.next().value);
console.log(gen.next().value);
console.log(gen.next(true).value);
console.log(gen.next().value);

What is the output?
Anonymous voting

CHALLENGE
const text = 'Today is 2023-12-31 and tomorrow is 2024-01-01';
const dateRegex = /(\d{4})-(\d{2})-(\d{2})/g;

let result = '';
let match;

while ((match = dateRegex.exec(text)) !== null) {
  const [fullMatch, year, month, day] = match;
  result += `${day}/${month}/${year.slice(2)} `;
}

console.log(result.trim());

πŸ€” The Roadmap to AdonisJS 7 Adonis is a popular TypeScript-first 'batteries included' web framework with a rich set of featu
πŸ€” The Roadmap to AdonisJS 7 Adonis is a popular TypeScript-first 'batteries included' web framework with a rich set of features, and its developers say they’re β€œshifting gears” and stepping up with more frequent major releases. v7 promises a lot, including Node.js diagnostic channel support, a type-safe URL builder, a new encryption layer, first-class support for notifications and TanStack Query, plus more. You’re encouraged to give your feedback here. Romain Lanz

What is the output?
Anonymous voting

CHALLENGE
const obj = { name: 'Alice', age: 30 };  
const handler = {
  get(target, prop) {
    return prop in target ? target[prop] : `Property '${prop}' doesn't exist`;
  }
};

const proxy = new Proxy(obj, handler);

const descriptors = Object.getOwnPropertyDescriptors(obj);
Reflect.defineProperty(obj, 'city', {
  value: 'New York',
  enumerable: false
});

console.log(proxy.city, proxy.country);

What is the output?
Anonymous voting

CHALLENGE
const createMathOps = (base) => {
  return {
    add: (x) => base + x,
    multiply: (x) => base * x
  };
};

const createAdvancedMathOps = (base) => {
  const basicOps = createMathOps(base);
  return {
    ...basicOps,
    square: () => basicOps.multiply(base),
    addThenSquare: (x) => {
      const added = basicOps.add(x);
      return added * added;
    }
  };
};

const calculator = createAdvancedMathOps(5);
console.log(calculator.addThenSquare(3));

What is the output?
Anonymous voting

CHALLENGE
function processConfig(config) {
  const settings = {
    timeout: config.timeout ?? 1000,
    retries: config.retries ?? 3,
    logging: config.logging ?? false,
    debug: config.debug || true
  };
  
  return settings;
}

const userConfig = {
  timeout: 0,
  retries: null,
  logging: false,
  debug: false
};

console.log(processConfig(userConfig));

πŸ€” : A Custom Element for Syntax Highlighting A custom element that uses the CSS Custom Highlight API (supported by most mode
πŸ€” <syntax-highlight>: A Custom Element for Syntax Highlighting A custom element that uses the CSS Custom Highlight API (supported by most modern browsers) for syntax highlighting so you don’t need to retreat to the age-old method of wrapping every token in spans. AndrΓ© Ruffert

What is the output?
Anonymous voting

CHALLENGE
const templateFn = (strings, ...values) => {
  return strings.reduce((result, str, i) => {
    const value = values[i] !== undefined ? 
      (typeof values[i] === 'number' ? values[i] * 2 : values[i]) : '';
    return result + str + value;
  }, '');
};

const num = 5;
const str = 'world';

const result = templateFn`Hello ${str}, ${num} times ${'!'}`;
console.log(result);

πŸ˜‰ Compiling JavaScript Ahead-of-Time The creator of the Porffor JavaScript compiler talks about the various ways to make Jav
πŸ˜‰ Compiling JavaScript Ahead-of-Time The creator of the Porffor JavaScript compiler talks about the various ways to make JavaScript faster to execute, before digging into Porffor’s approach. Oliver Medhurst

What is the output?
Anonymous voting

CHALLENGE
class ShoppingCart {
  constructor() {
    if (ShoppingCart.instance) {
      return ShoppingCart.instance;
    }
    
    this.items = [];
    ShoppingCart.instance = this;
  }
  
  addItem(item) {
    this.items.push(item);
  }
  
  getItems() {
    return [...this.items];
  }
}

const cart1 = new ShoppingCart();
const cart2 = new ShoppingCart();

cart1.addItem('Book');
cart2.addItem('Laptop');

console.log(cart1.getItems());

πŸ“– Exploring JavaScript (ES2025 Edition) Dr. Axel is back with his latest book covering all things relating to modern JavaScr
πŸ“– Exploring JavaScript (ES2025 Edition) Dr. Axel is back with his latest book covering all things relating to modern JavaScript at the language level (think built-in data types, modularity, how objects, classes and promises work, etc.). As with all of Axel's books, it’s available to buy but also to read online in HTML form for free. He’s also produced a set of flashcards to help you learn language features in both HTML and Anki forms. Dr. Axel Rauschmayer