April 1, 2025 - 2 minutes
The difference between ?? and || in TypeScript
Since both operators can be used to achieve similar results, sometimes people confuse them and don't know the difference or when to use one. Let's dive into the topic and settle it once for all.
Learn moreApril 17, 2023 - 1 minute
Horizontal vs vertical scaling
Let's dive deeper into system scalability. Discover the differences between horizontal and vertical scaling based on a simple example.
Learn moreOctober 17, 2022 - 1 minute
Strict mode
The strict mode was introduced in ECMAScript 5 as an opt-in mechanism. It helps developers write safer code by providing several really useful changes to normal JavaScript semantics. However it has some cons as well...
Learn moreOctober 10, 2022 - 1 minute
Backwards and forwards compatibility
Do you know what backwards and forwards compatibilities are? Do you know which one of them is JavaScript and which one - HTML? Do you know what are the consequences? Let's find out!
Learn moreOctober 5, 2022 - 1 minute
Micro- and macrotasks. Event loop.
You probably know that the JS engine is single-threatened, but still, the browser is not blocked when you make, e.g. an AJAX call. Have you wondered why? Let's go deeper into the async world in JS and discover the differences between micro and macro tasks.
Learn moreSeptember 30, 2022 - 1 minute
Use React children props
You can render children components in a parent in different ways in React. One of them is a special prop called props.children. Check what's the difference between it and passing components with custom props.
Learn more