"How to center div?" is the question I get asked the most in the interviews. Lets have some fun and take a creative approach to answer it!
This is personal blog by Eduard Miskov
I write about front-end, creative field, and stuff I recently discovered.
Web workers are scripts that run in the background and make your web app faster and more responsive. In this article, you'll learn how to use them and why they are so cool.
While CSS doesn't provide a native way to create box shadow gradients, there are some nice CSS tricks you can use to achieve the effect.
How to use the script tag, and some magic attributes like async and defer to make your web page load faster and smoother.
This is a short, summarizing article, that introduces the basic concepts of REST API, such as resources, response codes, requests, and responses, and shows how to make them in JavaScript and PHP
Today, I want to share with you some cool concepts about recursion and tail recursion in JavaScript. You will learn how this helps to write elegant and efficient code, and how the JavaScript engine handles them with the call stack.
Memoization is a technique that can help you speed up your applications by caching the results of expensive, heavy function calls. This article will show you how to implement memoization in JavaScript using closures and higher-order functions, and when to use it wisely.