de5ash1zh.hashnode.devLast time you'll go through promises......I promise.Before we begin there are a few things to know about javascript: JavaScript is single-threaded ----> One call stack -----> One thing executes at a time. But in the real world, the apps/ websites we 5d ago·4 min read
de5ash1zh.hashnode.devNegative Indexing in JS is a thing/ Getting to know proxies....Is it not enabled by default?? let arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; console.log(arr[-1]); // we get undefined onto the console So why does on accessing arr[-1] return undefined? JavaScript does not support negative indexing by out of the bo...Feb 25, 2025·3 min read
de5ash1zh.hashnode.devIs Javascript the culprit ? The story of Javascript: Part 1A long long time ago, websites were boring. They could only show text and images, like a digital newspaper. You couldn’t click buttons to make things happen, scroll smoothly, or see instant updates. Everything was static. Then, in 1995, a programmer ...Feb 3, 2025·6 min read
de5ash1zh.hashnode.devHow your data travels via internet?Your website name → Address When we type certain url in our browser like www.google.com, so the first thing that happens is the IP address is found out of the url that you entered. Computers don’t understand these domain names, they only understand I...Jan 15, 2025·3 min read