CHALLENGE
var obj = {
a: 10,
b: 20,
c: 'hello'
};
with (obj) {
var sum = a + b;
var greeting = c + ' world';
}
console.log(sum, greeting);
π15π₯2π€©2
What is the output?
Anonymous Quiz
81%
30 'hello world'
6%
30 'hello'
5%
'hello world' 30
9%
undefined 'hello world'
π€14π7β€5π€£2
Itβs a modest milestone, but Node v22.12.0 (LTS) has been released and marks Nodeβs first LTS release with non-flagged support for loading native ES modules with require(). Itβs still experimental, though, and youβre encouraged to send in feedback and bug reports.
Sarah Gooding
Please open Telegram to view this post
VIEW IN TELEGRAM
π8π₯2β€1
CHALLENGE
let a = 5; // binary: 0101
let b = 3; // binary: 0011
let result = a & b;
console.log(result);
π8β€4π€©2π₯1
π€18β€5π4
libvips is a popular, highly efficient image processing library written in C. You can use it via Sharp in Node.js, but this offers a more isomorphic route for use in Node, Deno, and modern browsers by way of WebAssembly. (There's a nifty online demo here.)
Kleis Auke Wolthuizen
Please open Telegram to view this post
VIEW IN TELEGRAM
π5β€3π₯3
CHALLENGE
const defaultSettings = {
theme: 'light',
notifications: true,
location: 'USA'
};
const userSettings = {
theme: 'dark',
location: 'Canada'
};
const finalSettings = {
...defaultSettings,
...userSettings
};
console.log(finalSettings);
π17β€3
What is the output?
Anonymous Quiz
25%
{ theme: 'light', notifications: true, location: 'USA' }
62%
{ theme: 'dark', notifications: true, location: 'Canada' }
10%
{ theme: 'light', notifications: true, location: 'Canada' }
3%
{ theme: 'dark', notifications: false, location: 'USA' }
π₯19π€12β€7π5π€©2
Under development for several years, Boa has a few missions: be a Rust ECMAScript implementation, be easy to embed in Rust projects, and be a fast, safe JS engine overall. v0.20 sees a bump up to 89.92% compliance in the Test262 suite, improves Temporal support, adds Atomics.pause, and more. This is no toy engine.
Boa Developers
Please open Telegram to view this post
VIEW IN TELEGRAM
π4π₯2β€1
CHALLENGE
let a = 5; // binary: 101
let b = 3; // binary: 011
let result = a ^ b;
console.log(result);
π13β€1
π€29π12β€5π₯3
A thorough set of benchmarks covering recent performance advancements made in Node.js. The improvements between Node 18 and 20 up to version 22 might surprise you - itβs clear the team has put a lot of work into this area.
Gonzaga and Parody (NodeSource)
Please open Telegram to view this post
VIEW IN TELEGRAM
π6π₯2β€1
Starting today until December 31, weβll be wrapping up the year with surveys and celebrations! π
During this time, weβll pause posting JavaScript updates to focus on reflecting and celebrating together. Thank you for your understanding, and we wish you and your families a joyful and peaceful holiday season!π
During this time, weβll pause posting JavaScript updates to focus on reflecting and celebrating together. Thank you for your understanding, and we wish you and your families a joyful and peaceful holiday season!
Please open Telegram to view this post
VIEW IN TELEGRAM
β€11π8π€©3
Please open Telegram to view this post
VIEW IN TELEGRAM
π€£26β€6π5π₯2π€2
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯5β€3
Your salary range in 2024 ($ per year)
Anonymous Poll
44%
0-10K
10%
10-20K
8%
20-30K
8%
30-60K
4%
60-80K
4%
80-100K
4%
100-120K
2%
120-150K
2%
150-180K
13%
180k+
π€£75π€10π9β€5π₯3
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯8π4β€1
Framework/lib of the year?
Anonymous Poll
72%
React π΅
6%
Vue.js π²
7%
Angular πΈ
2%
Svelte π
8%
Next.js
0%
Qwik
1%
Astro
1%
Solid.js
0%
Backbone.js
3%
Other π¬
β€25π8π₯6π€3π€£1
Please open Telegram to view this post
VIEW IN TELEGRAM