PPPriyanka Prajapatiinprajapati-priyanka.hashnode.dev·Jul 22, 2022 · 3 min readNullish Coalescing OperatorThe nullish coalescing operator, though spelling the name is quite difficult but it is very easy to understand. ES2020 introduced the nullish coalescing operator which is a logical operator and accepts two values: leftExpr ?? rightExpr Nullish Coale...00
PPPriyanka Prajapatiinprajapati-priyanka.hashnode.dev·Jul 22, 2022 · 3 min readThe Temporal Dead ZoneThe Temporal Dead Zone (TDZ), although the name may seem intimidating the idea is actually rather simple. The TDZ, along side with two new types of variable called const and let were introduced in ES6. Before diving into TDZ, let us understand the di...00
PPPriyanka Prajapatiinprajapati-priyanka.hashnode.dev·Jul 20, 2022 · 4 min readHow Javascript works and code is run behind the scene.Javascript is the most famous and at the same time most confusing language in the world. Most developers still find it difficult to understand its underlying beauty. Whenever we write any javascript code, it's very normal to run into bugs, but when y...00