A thorough comparison of the template languages used by React, Vue, Angular and Svelte. Interesting analysis and this looks set to turn into a great series.
MAARTEN HUS
Please open Telegram to view this post
VIEW IN TELEGRAM
var x = 1;
function changeX() { x = 2; }
changeX();
console.log(x);
Please open Telegram to view this post
VIEW IN TELEGRAM
β€13π€10π2
π23β€7π€7π€©6 4
No clue what it means, or what it does.
I felt this way when I saw it for the first time.
But you donβt have to feel the same way I did.
Iβve tested, benchmarked and compiled all the details which will help you make the best use of AWS LLRT.
Please open Telegram to view this post
VIEW IN TELEGRAM
π12π€©5 4
function Animal(){
this.type = "animal"
}
function Dog(){
this.name = "dog"
}
Dog.prototype = new Animal()
var PavlovPet = new Dog();
console.log(PavlovPet.__proto__ === Dog.prototype)
console.log(Dog.prototype.__proto__ === Animal.prototype)
Please open Telegram to view this post
VIEW IN TELEGRAM
π13β€8π€3
What is the output?
Anonymous Quiz
46%
true and true
24%
false and true
21%
true and false
8%
false and false
π17β€6 6π€£1
Please open Telegram to view this post
VIEW IN TELEGRAM
π8 5β€2
console.log("5" + 3);
console.log("5" - 3);
Please open Telegram to view this post
VIEW IN TELEGRAM
π12β€9π€2
Joyee writes about landing experimental support for require()-ing synchronous ES modules in Node, a feature that has been a long time coming, due to both technical and cultural factors.
JOYEE CHEUNG
Please open Telegram to view this post
VIEW IN TELEGRAM
console.log(new RegExp({}).test("mom"));
console.log(new RegExp({}).test("dad"));
By Samvel
Please open Telegram to view this post
VIEW IN TELEGRAM
π€26β€10 6π4
π€34π€£16 6β€4π4
Several developers have come together to build this convenient way to visualize the compatibility of different Web APIs and JavaScript features across the ever increasing number of different runtimes (e.g. Bun, Deno, Node, LLRT..)
TOM LIENARD ET AL.
Please open Telegram to view this post
VIEW IN TELEGRAM
β€6π5 4
CHALLENGE β
let arr = [1, 2, 3];
function modifyArray(array) {
array.push(4);
}
modifyArray(arr.splice(1));
console.log(arr);
Please open Telegram to view this post
VIEW IN TELEGRAM
π€31 28π14π€£4
A small library for beautiful drawing and handwriting on canvas elements. Itβs been around for several years but v4.0 is almost a complete rewrite. GitHub repo.
JAKUB FIALA
Please open Telegram to view this post
VIEW IN TELEGRAM
π5 2β€1
CHALLENGE β
let x = 5;
let result = typeof (x + "10");
console.log(result);
Please open Telegram to view this post
VIEW IN TELEGRAM
π4β€3
β€22π9π€9π€©2 1
Zach Wilson
Please open Telegram to view this post
VIEW IN TELEGRAM
π€£87 5π€3π€©2
function foo() {
let a = b = 0
a++
return a
}
foo()
console.log(typeof a)
console.log(typeof b)
Please open Telegram to view this post
VIEW IN TELEGRAM
π€22π8β€2