Please open Telegram to view this post
VIEW IN TELEGRAM
π€£113β€6π₯6π2π€©1
CHALLENGE β
const arr = [1, 2, 3];
arr[10] = 11;
console.log(arr.length);
Please open Telegram to view this post
VIEW IN TELEGRAM
π6
π€£42π14π₯5
Please open Telegram to view this post
VIEW IN TELEGRAM
π€£84π5β€4π€1
CHALLENGE β
const obj = {
a: 1,
b: 2,
a: 3
};
console.log(obj.a);
Please open Telegram to view this post
VIEW IN TELEGRAM
π€£24π17π€9
π€£92π19β€5π€5π₯3
Please open Telegram to view this post
VIEW IN TELEGRAM
π7π₯3β€2π€©1
CHALLENGE β
console.log([..."hello"]);
Please open Telegram to view this post
VIEW IN TELEGRAM
π18
What is the output?
Anonymous Quiz
51%
["h", "e", "l", "l", "o"]
35%
["hello"]
12%
Error
2%
["h", "ello"]
π€£18π13π€8β€7
CHALLENGE β
Number.prototype[Symbol.iterator] = function*() { yield *['a','b','c'] };
console.log([...1]);
Please open Telegram to view this post
VIEW IN TELEGRAM
π€12β€4π3
π2π€1
A long-standing comparison of many different frameworks (like React, Vue, Svelte, Angular, Qwik, Solid.js, etc.) by way of simple code snippets to perform various tasks. Now including Svelte 5 and Angular 17/Renaissance.
Mathieu Schimmerling
Please open Telegram to view this post
VIEW IN TELEGRAM
π3π₯3
CHALLENGE β
console.log([β¦({ [Symbol.iterator]: function*(){ yield *[1, yield *[2,3] ] } })])
Please open Telegram to view this post
VIEW IN TELEGRAM
π7π₯3β€1
π10β€5π€4π₯2
Import Attributes (now at stage 4 at TC39 and already supported in some runtimes) add a way to supply useful metadata about modules youβre importing.
Trevor I. Lasn
Please open Telegram to view this post
VIEW IN TELEGRAM
π12π₯4β€2
A text editor framework built by Meta with extensibility, accessibility, and cross platform support in mind (thereβs even a Swift variant for iOS). Thereβs a live playground if you want to give it a try. React support is first class, but it can be adapted to work elsewhere (as with svelte-lexical).
Meta / Facebook
Please open Telegram to view this post
VIEW IN TELEGRAM
π9β€3π₯1
Please open Telegram to view this post
VIEW IN TELEGRAM
β€2π2π₯2
AWS Lambda, Amazonβs cloud function service, essentially launched the term βserverlessβ and had a big impact on the use of Node.js in the cloud with Node v0.10 being the first and only runtime supported (till Java was added a year later).
Jeff Barr (AWS)
Please open Telegram to view this post
VIEW IN TELEGRAM
π9β€2π₯2