ββECMAScript 2022 is a new JavaScript standard that is going to be released in June 2022. Letβs overview the most important changes that would appear almost certainly in the new release as they reached the 4th stage of TC39 process.
β± 3 minutes read
#JavaScript
β± 3 minutes read
#JavaScript
Medium
4 most important features coming in ES2022 that you should know about
ECMAScript 2022 is a new JavaScript standard that is going to be released in June 2022. Letβs overview the most important changes thatβ¦
ββThe war among frameworks is a hot topic in the JavaScript community, and it is one of many holy wars in the profession. Since the beginning, with jQuery, followed by AngularJS to modern frameworks, the war has been fierce.
β± 5 minutes
#JavaScript #Frameworks
β± 5 minutes
#JavaScript #Frameworks
Medium
The JavaScript framework war is over
And there is only one winner.
ββWe as JavaScript developers usually console.log() stuffs to test the output or just for fun. Even, I can bet that our (include me βοΈ) first code was βHello worldβ logged in the console.
β± 2 minutes read
#JavaScript
β± 2 minutes read
#JavaScript
Medium
Itβs 2022, Donβt Use the console.log() Anymore
A quick tip to save your time and make your code look cleaner.
ββWhatever your stance on async/await, Iβd like to pitch to you on why, in my experience, async/await tends to make code more complicated, not less.
β± 10 minutes
#JavaScript
β± 10 minutes
#JavaScript
Medium
Why I avoid async/await
Whatever your stance on async/await, Iβd like to pitch to you on why, in my experience, async/await tends to make code more complicatedβ¦
ββJavascript is continuously evolving and in every year it is coming up with new features which are very demanding from developer community side since it could help code to improve the code quality, reduce the final bundle size and also could help an application to improve application performance.
β± 3 minutes read
#JavaScript
β± 3 minutes read
#JavaScript
ββJavaScript is one of the most dynamic languages out there. Multiple features are added to make the language more manageable and practical each year.
7 minutes read β±
#JavaScript
7 minutes read β±
#JavaScript
Medium
Advanced JavaScript Concepts that Helped Me Get Better at Coding
JavaScript is one of the most dynamic languages out there. Multiple features are added to make the language more manageable and practicalβ¦
ββAfter so many years of having to use Node.js, there is finally competition. Bun is now publicly available. It describes itself as a fast all-in-one JavaScript runtime. Just like Node.js? β No, not like Node.js. There is much more to this story.
β± 5 minutes read
#Bun #JavaScript #Runtime
β± 5 minutes read
#Bun #JavaScript #Runtime
Medium
Node.js is Dead. β Long Live Bun.
Finally something new in the JavaScript eco system.
ββLike a lot of other programming languages, JavaScript is constantly evolving. Every year, the language is made more powerful with new capabilities that let developers write more expressive and concise code.
β± 9 minutes read
#JavaScript
β± 9 minutes read
#JavaScript
Medium
11 Amazing New JavaScript Features in ES13
We take a look at the most recently released JavaScript features from ES13 that will help you write more concise and expressive code.
π1
ββI measured the time complexity and space complexity of the most common methods to find if a value exists in an array.
β± 4 minutes read
#JavaScript
β± 4 minutes read
#JavaScript
Medium
Which is the fastest way to find if something exists in an Array in Javascript?
Is [1,2,3,4].includes(3) faster then doing a for loop? Is Array.indexOf any better?