ARTICLES & TUTORIALS
π ES2023 introduces new array copying methods to JavaScript
The newest ECMAScript spec introduces some new methods on Array that youβll eventually find useful in your own programs. Phil gives us the tour.
PHIL NASH
π JS private class fields considered harmful
As a library author, Iβve decided to avoid private class fields from now on and gradually refactor them out of my existing libraries.
LEA VEROU
π¬ I'm Done With React
Going from least-to-most important, the reasons this developer isnβt choosing React for future projects make for interesting watching, particularly if you too are overwhelmed by upheaval in the React world. Solid is one of the alternatives he has warmed to.
ADAM ELMORE
π Running JavaScript in Rust with Deno
Denoβs use of Rust makes it a natural choice if youβre building a Rust app and want to integrate a JavaScript engine.
AUSTIN POOR
π ES2023 introduces new array copying methods to JavaScript
The newest ECMAScript spec introduces some new methods on Array that youβll eventually find useful in your own programs. Phil gives us the tour.
PHIL NASH
π JS private class fields considered harmful
As a library author, Iβve decided to avoid private class fields from now on and gradually refactor them out of my existing libraries.
LEA VEROU
π¬ I'm Done With React
Going from least-to-most important, the reasons this developer isnβt choosing React for future projects make for interesting watching, particularly if you too are overwhelmed by upheaval in the React world. Solid is one of the alternatives he has warmed to.
ADAM ELMORE
π Running JavaScript in Rust with Deno
Denoβs use of Rust makes it a natural choice if youβre building a Rust app and want to integrate a JavaScript engine.
AUSTIN POOR
π7π2
π€3β€1
JavaScript Engines π
βοΈ V8: Created by Google and written in C++, used by Brave, Chrome, Opera, Vivaldi, Edge. It is also used by Nodejs, Electron and Deno.
βοΈ SpiderMonkey: Developed by Mozilla and used by Firefox
βοΈ JavaScriptCore (JSC) : Apple's engine for Safari. It is also recently used by Bun.
βοΈ Chakra: Created by Microsoft for the late Internet Explorer and later for Edge before going to V8.
Lupita Code
βοΈ V8: Created by Google and written in C++, used by Brave, Chrome, Opera, Vivaldi, Edge. It is also used by Nodejs, Electron and Deno.
βοΈ SpiderMonkey: Developed by Mozilla and used by Firefox
βοΈ JavaScriptCore (JSC) : Apple's engine for Safari. It is also recently used by Bun.
βοΈ Chakra: Created by Microsoft for the late Internet Explorer and later for Edge before going to V8.
Lupita Code
β€8π3π3π₯2
What is the output?
Anonymous Quiz
12%
value, {}
28%
undefined, {}
40%
value, { "key": "value" }
21%
value, { Symbole("key"): "value" )
π7β€3
π₯6