JavaScript
@javascriptA 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)
- CHALLENGE class Vehicle { #speed = 0; constructor(type, maxSpeed) { this.type = type; this.maxSpeed = maxSpeed; } accel… 13.06.2026
- Пост без текста 13.06.2026
- 🤔 Oxide Computer Company's Mitos ASCII Tool (above) converts images into ASCII text illustrations and animations, by w… 12.06.2026
- CHALLENGE class BankAccount { #balance; #transactionLog = []; constructor(initialBalance) { this.#balance = initialBala… 12.06.2026
- Пост без текста 12.06.2026
- 😮 Geometric.js: A Library for Doing Geometry Created by someone who works on graphics for the NYT, this elegant librar… 11.06.2026
- CHALLENGE const handler = { get(target, prop, receiver) { if (prop in target) { return Reflect.get(target, prop, receiv… 11.06.2026
- Пост без текста 11.06.2026
- 👀 VoidZero is Joining Cloudflare One of the year’s big moves in JS tooling, as told by Evan himself. The company he fo… 10.06.2026
- CHALLENGE class Registry { static #instances = new Map(); static #count = 0; static defaultTTL; static maxSize; static … 10.06.2026
- Пост без текста 10.06.2026
- CHALLENGE const memoize = (fn) => { const cache = new Map(); return (...args) => { const key = JSON.stringify(args); if… 09.06.2026
- Пост без текста 09.06.2026
- 🌪 GitHub Copilot SDK Now Generally Available Available for several platforms, including Node, this SDK lets you wield … 08.06.2026
- CHALLENGE class Pipeline { #value; #log = []; constructor(value) { this.#value = value; } map(fn) { this.#value = fn(th… 08.06.2026
- Пост без текста 08.06.2026
- 😮 replacements.fyi: Find Replacements for npm Packages Type in a package name and get suggestions of lighter alternati… 07.06.2026
- CHALLENGE const transactions = [ { type: "credit", amount: 200, category: "salary" }, { type: "debit", amount: 50, cate… 07.06.2026
- Пост без текста 07.06.2026
- CHALLENGE const person = { name: "Marcus", greet: function () { const inner = () => `Hello, I am ${this.name}`; return … 06.06.2026