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

I Wrote 99 Articles On My Blog

March 31, 2021
#Other

In mid April 2020, almost a year ago, I decided to start my programming blog mainly to expand my knowledge in some areas I felt I was lacking. The journey started with a little introduction of myself and the reasoning behind kicking off. After finishing the first post...Read more

47

Can't Read Environment Variable In React?

March 26, 2021
#React

Many developers use create-react-app to generate a boilerplate needed to quickly start developing a React application. It gives you the option to define Environment Variables is a special file named .env. All variables defined in...Read more

48

Better Form Handling With Formik In React

March 23, 2021
#React

Forms play a crucial role in modern web development by providing a way to collect information from customers. Handling them well is a must to avoid losing data due to a silly validation mistake or bug in the code, which is not always...Read more

49

Abstract vs. Strict Comparison In JavaScript

March 18, 2021
#JavaScript

One of the essential things to understand when getting started with JavaScript is how to check if two values are equal. JavaScript provides three ways to do this: Abstract Equality Operator (==), Strict Equality Operator (===), and...Read more

50

A Simple Guide To Closures In JavaScript

March 15, 2021
#JavaScript

The concept of Closures is not an easy thing to wrap your head around. Many experienced developers still have trouble understanding it, let alone explaining it to a colleague or in an interview for a new job. Today we will learn it with..Read more

51

Enable Spell Checking With HTML Only

March 12, 2021
#Other

Recently, while browsing the web, I came across an interesting HTML attribute that allows you to spell check your input, text areas, and content editable fields. This can become an extremely useful addition to your website if you have...Read more

52

A Simple Guide To Currying In JavaScript

March 08, 2021
#JavaScript

Currying is the technique of converting functions that take multiple arguments into a sequence of functions that each take a single argument. A curried function acts as Higher-Order Function, which allows functions to be created with some predefined data...Read more

53

Reduce Method In JavaScript

March 05, 2021
#JavaScript

Reduce is one of the most difficult to understand, but the most powerful built-in array methods. It helps us perform different kinds of actions on an array without writing a lot of boilerplate code. Basically, it...Read more

54

Serve Build Folder In React

March 01, 2021
#React

In some special cases, you may need to run the React production application locally. For example, if in the development environment the app works fine, but the production environment contains some strange errors. Debugging in the production is generally bad and time-consuming...Read more

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