JavaScript
31.9K subscribers
1.01K photos
9 videos
33 files
693 links
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
Download Telegram
😃 We are waiting for your honest answer.
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥8👍41
😆 We think the answer is clear, but ...
Please open Telegram to view this post
VIEW IN TELEGRAM
Runtime/Framework/lib of the year?
Anonymous Poll
64%
Express.js 🤟
18%
NestJS 🌦
3%
Deno 💻
0%
Koa.js
2%
Fastify
1%
Hapi.js
1%
Lodash 😆
1%
Sequelize
7%
Other 😨
👍1310🔥5🤔3🤣3
🥰
Please open Telegram to view this post
VIEW IN TELEGRAM
4🔥3115🤩5👍4
🙏We would like to hear your feedback!
Please open Telegram to view this post
VIEW IN TELEGRAM
3👍3
How do you rate us :) ?
Anonymous Poll
13%
1
4%
2
13%
3
18%
4
52%
5
🔥15👍5🤣43🤔1
You can also provide free-text feedback about your opinion by simply submitting it here.
👍4
🙏 You can support us via crypto

🤑 (TON) UQBUbmofBcohb5Ix5lYjTEz3IH8aVBg8go_KpgeTJTJz21d2

🤑 (TRC 20) TE9wDkNdnTtrzbk3tqWyTgt2zK3byUqH79

Or just buy us a coffee ☕️
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥62👍2🤔1
Please open Telegram to view this post
VIEW IN TELEGRAM
7👍6🔥2
🤟 Node.js Weekly #560 - last report

A look back at Node's 2024

2024 has been a solid year for Node, with the release of Node.js v22 back in April (now in LTS) and v23 in October. Node also got a new mascot this year (above), Express 5.0 arrived, Node has dabbled with type stripping to better support TypeScript, and a native SQLite module has been under active development. Fingers crossed for an interesting 2025!
Please open Telegram to view this post
VIEW IN TELEGRAM
13🔥5👍4
🥂 Let's rock the 2025!
Please open Telegram to view this post
VIEW IN TELEGRAM
44🔥26🤣6🤩4🤔3👍1
CHALLENGE


function combine(...arrays) {
return arrays.reduce((acc, arr) => [...acc, ...arr], []);
}

const result = combine([1, 2], [3, 4], [5, 6]);
console.log(result);
👍8🤩3
🔥20👍103
CHALLENGE


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

const result = obj + 8;
console.log(result);
👍113🤣3
What is the output?
Anonymous Quiz
21%
object Object8
11%
42
53%
50
15%
undefined
🤩22👍107
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();
🤣10🤔9👍7
What is the output?
Anonymous Quiz
30%
10 15 1
22%
15 15 5
41%
10 15 5
7%
10 10 1
👍34🤣19🤔11🔥2🤩1
🌦 awesome-nest-schematics

Awesome Nest Boilerplate architecture element generation based on Angular schematics 🎬

NarHakobyan
Please open Telegram to view this post
VIEW IN TELEGRAM
👍9🔥53
CHALLENGE

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

console.log(trickyFunction());
👍115
What is the output?
Anonymous Quiz
67%
20
10%
undefined
20%
10
3%
ReferenceError
👍31🤣202🤔1