ES2020
Everything on SkillVeris tagged ES2020 — collected across the glossary, study notes, blog, and cheat sheets.
2 resources across 1 library
Interview Questions(2)
What Is Optional Chaining in JavaScript?
Optional chaining, written with the `?.` operator, lets you safely access a nested property, call a method, or index into an array without throwing a TypeError…
Promise.all vs Promise.allSettled: When to Use Each?
Promise.all resolves with an array of values only if every input promise fulfills, and it rejects immediately with the first rejection reason if any one fails,…