Articles
-
How to format numbers with vanilla Javascript
Displaying big numbers in complex user interface can be a pretty tough task. You don't need to install external packages to solve this issue
-
Internationalize React application with i18n
Discover the benefits of internationalization (i18n) in application development: removing barriers to localization and enhancing global availability of your app
-
Is this (keyword) a problem?
The behaviour of this keyword in Javascript can be really hard to understand even for more experienced developers
-
Optimize performance with React.lazy and Suspense
Code-splitting is popular feature to create multiple bundles that can be dynamically loaded at runtime to improve user experience
-
Regular Expressions aka REGEX crash course
Regular expressions, also known as "regex", are patterns that help search, match or replace character combinations in strings
-
Basic types in Typescript
Start using Typescript in your projects - learn everything you need to understand basic Typescript types
-
Understand raw React
Using React without JSX is totally possible. See how React works under JSX syntatic sugar and what problems it solves for you.
-
Local Storage and Session Storage - Web Storage API
Understand the differences between Web Storage API and cookies. Easily store your data locally and use it in your app
-
Destructuring arrays and objects
When used correctly, destructuring arrays and objects can become a big advantage for every JavaScript developer