I Am
Volodymyr Hudyma
<FrontEndDeveloper />
Table Of Contents(Articles: 145)
127

Nullish Coalescing Operator

May 29, 2020
#JavaScript

The nullish coalescing operator "??" is a logical operator that returns right-side operand if left side equals to null or undefined, otherwise returns left side. If you're familiar with the logical OR operator, you may wonder what's the difference between it and nullish coalescing operator...Read more

128

Optional Chaining In JavaScript

May 27, 2020
#JavaScript

When dealing with complex objects or API responses it is a common thing to access nested properties. In order to make sure the property is reachable without any errors being thrown, we have to make sure each of its parent properties exists...Read more

129

How To Clone An Object In JavaScript?

May 25, 2020
#JavaScript

Due to the fact that objects are reference values in JavaScript, copying them is not as easy as just assigning to another variable. There are a lot of different ways to copy an object. Choosing the right method depends on what would you like to achieve...Read more

130

Spread Operator In JavaScript

May 24, 2020
#JavaScript

Spread operator is used to access all elements inside of an iterable. Don't worry if the definition is not clear, we'll explain the operator in detail...Read more

131

Destructuring Assignment In JavaScript

May 18, 2020
#JavaScript

Destructuring assignment is a special syntax that allows us to retrieve pieces of arrays or objects and assign them to separate variables. This approach can be used for...Read more

132

Template Literals In JavaScript

May 17, 2020
#JavaScript

Template literals are string literals that allow embedding an expression. It is possible to use string interpolation and multi-line string features with them. In JavaScript, there are 3 ways of defining a string...Read more

133

Async/Await In JavaScript

May 16, 2020
#JavaScript

These keywords act as a syntactic sugar built on top of Promises, making asynchronous code look and feel like synchronous, therefore easier to produce and maintain. Async function - it is a function, declared using...Read more

134

Promises In JavaScript

May 14, 2020
#JavaScript

Promise - it is an object that produces some value in the future. This object represents the result of an asynchronous operation. Promise has 3 states...Read more

135

Capturing Groups In Regular Expressions

May 12, 2020
#JavaScript

What if we don't only need to check if the given string contains the specific pattern, but get the part of a match? You can easily do so by using so-called capturing groups...Read more

Newsletter
Receive all new posts directly to your e-mail
No spam, only quality content twice a week