HKHemendra Khatikinblog.aamchora.space路Jul 25, 2022 路 2 min readWhat exactly Just in time (JIT) compilation is in JavaScript?Is JavaScript compiled language or interpreted language or a mix of both? Don't worry! Take a chill pill 馃槑 I'll break it down for you, bit by bit. But first thing first... Take a deep breath, and follow along. JavaScript engines use the JIT(just in ...00
HKHemendra Khatikinblog.aamchora.space路Jul 13, 2022 路 2 min readPolyfills and Transpilers in JavaScript.Have you ever been in a situation where your code runs in one browser and fails in another? And you would be wondering what the hell is happening?? Even after checking your code thoroughly, over and over again, you find it 100% correct. Then where t...01R
HKHemendra Khatikinblog.aamchora.space路Jul 11, 2022 路 4 min readHow to upload file using ExpressJS(NodeJS) - MulterIt took me 4-days and 100+ attempts to solve this simple issue of uploading a file using node. And the moment I got it right, I was like...phewww Here is how I solved this issue. By creating a - Simple node server. Middleware to process files. PO...00
HKHemendra Khatikinblog.aamchora.space路Jul 5, 2022 路 2 min readFunctions are Objects in JavaScriptWhattttt??? Yes, You read that correctly. Let's deep dive into this topic. Before we get into a serious drill, Let's quickly revise objects and functions in JavaScript. Object: Objects in JavaScript are nothing but a non-primitive type data structu...00
HKHemendra Khatikinblog.aamchora.space路Jul 1, 2022 路 2 min readWhat is throttling in JavaScript?Again a jargonish word, but let me demystify it for you. It's nothing but a simple technique we use to prevent unnecessary function calls to improve app's performance. Unlike Debouncing, here we block a function call for a particular time if it's be...00