We would like to ask for your help. Please boost us to continue sending stories on Telegram.
Please open Telegram to view this post
VIEW IN TELEGRAM
const string = "hello world";
const result = string.replace(/l/g, "");
console.log(result);
Please open Telegram to view this post
VIEW IN TELEGRAM
π€12 7β€4
π€£38π14 8β€3
I don't know why Iβve not linked this before, as itβs so useful. Playwright isnβt just a library for controlling browsers from JavaScript, but also includes a tool for generating tests and page navigation code from your own interactions. Hit record, do stuff, and code is written.
MICROSOFT
Please open Telegram to view this post
VIEW IN TELEGRAM
π10 6β€1π€£1
console.log(typeof null);
Please open Telegram to view this post
VIEW IN TELEGRAM
π€£35 16π€9π€©4π2
π€£41π€13π11 7β€1
WinterJS initially pitched itself as a Rust and SpiderMonkey-powered βService Workers serverβ but now simply boasts being the fastest WinterCG-compatible JavaScript web server full stop. The ability to run JITed JS workloads entirely under WebAssembly is next on their radar.
WASMER
Please open Telegram to view this post
VIEW IN TELEGRAM
π15 3π€©2β€1
console.log(0.1 + 0.2 === 0.3);
Please open Telegram to view this post
VIEW IN TELEGRAM
π€21π1
π€£67π€48π13β€6 4π€©1
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